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.
27 lines
703 B
27 lines
703 B
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = isAlpha;
|
|
exports.locales = void 0;
|
|
|
|
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
|
|
|
var _alpha = require("./alpha");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function isAlpha(str) {
|
|
var locale = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'en-US';
|
|
(0, _assertString.default)(str);
|
|
|
|
if (locale in _alpha.alpha) {
|
|
return _alpha.alpha[locale].test(str);
|
|
}
|
|
|
|
throw new Error("Invalid locale '".concat(locale, "'"));
|
|
}
|
|
|
|
var locales = Object.keys(_alpha.alpha);
|
|
exports.locales = locales; |