UNPKG

data-validator-js

Version:
30 lines (29 loc) 784 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var PasswordStrength = /** @class */ (function () { function PasswordStrength() { } Object.defineProperty(PasswordStrength, "Week", { get: function () { return 'week'; }, enumerable: true, configurable: true }); Object.defineProperty(PasswordStrength, "Strong", { get: function () { return 'strong'; }, enumerable: true, configurable: true }); Object.defineProperty(PasswordStrength, "Good", { get: function () { return 'good'; }, enumerable: true, configurable: true }); return PasswordStrength; }()); exports.default = PasswordStrength;