data-validator-js
Version:
Validation Methods for all types of Data
30 lines (29 loc) • 784 B
JavaScript
;
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;