You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
233 B
6 lines
233 B
2 years ago
|
import assertString from './util/assertString';
|
||
|
export var halfWidth = /[\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
|
||
|
export default function isHalfWidth(str) {
|
||
|
assertString(str);
|
||
|
return halfWidth.test(str);
|
||
|
}
|