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.
19 lines
523 B
19 lines
523 B
2 years ago
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = isHalfWidth;
|
||
|
exports.halfWidth = void 0;
|
||
|
|
||
|
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
var halfWidth = /[\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
|
||
|
exports.halfWidth = halfWidth;
|
||
|
|
||
|
function isHalfWidth(str) {
|
||
|
(0, _assertString.default)(str);
|
||
|
return halfWidth.test(str);
|
||
|
}
|