forked from enviPath/enviPy
Current Dev State
This commit is contained in:
22
static/js/ketcher2/node_modules/validator/lib/isVariableWidth.js
generated
vendored
Normal file
22
static/js/ketcher2/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 = require('./util/assertString');
|
||||
|
||||
var _assertString2 = _interopRequireDefault(_assertString);
|
||||
|
||||
var _isFullWidth = require('./isFullWidth');
|
||||
|
||||
var _isHalfWidth = require('./isHalfWidth');
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function isVariableWidth(str) {
|
||||
(0, _assertString2.default)(str);
|
||||
return _isFullWidth.fullWidth.test(str) && _isHalfWidth.halfWidth.test(str);
|
||||
}
|
||||
module.exports = exports['default'];
|
||||
Reference in New Issue
Block a user