Initial commit
This commit is contained in:
commit
d7af9332c1
1674 changed files with 119641 additions and 0 deletions
22
node_modules/validator/lib/isVariableWidth.js
generated
vendored
Normal file
22
node_modules/validator/lib/isVariableWidth.js
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = isVariableWidth;
|
||||
|
||||
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
||||
|
||||
var _isFullWidth = require("./isFullWidth");
|
||||
|
||||
var _isHalfWidth = require("./isHalfWidth");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function isVariableWidth(str) {
|
||||
(0, _assertString.default)(str);
|
||||
return _isFullWidth.fullWidth.test(str) && _isHalfWidth.halfWidth.test(str);
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
module.exports.default = exports.default;
|
Loading…
Add table
Add a link
Reference in a new issue