.
This commit is contained in:
14
qwen/nodejs/node_modules/validator/lib/isHalfWidth.js
generated
vendored
Normal file
14
qwen/nodejs/node_modules/validator/lib/isHalfWidth.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = isHalfWidth;
|
||||
exports.halfWidth = void 0;
|
||||
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
||||
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user