14 lines
508 B
JavaScript
14 lines
508 B
JavaScript
|
"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 = exports.halfWidth = /[\u0020-\u007E\uFF61-\uFF9F\uFFA0-\uFFDC\uFFE8-\uFFEE0-9a-zA-Z]/;
|
||
|
function isHalfWidth(str) {
|
||
|
(0, _assertString.default)(str);
|
||
|
return halfWidth.test(str);
|
||
|
}
|