blob: b0c879573f86114da7eac4f00f5800e2a2f17ad4 (
plain)
1
2
3
4
5
6
|
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);
}
|