cerceis-lib
Version:
Contains list of quality of life functions that is written in TypeScript and es6
11 lines (10 loc) • 357 B
JavaScript
export const localeEng = {
min: (min) => `Min ${min}`,
max: (max) => `Max ${max}`,
isEmail: "Invalid Email",
required: "Required",
alphanumeric: "Value needs to be alphanumeric ( 0~9, a~Z )",
noSpecials: "Must not contain special symbols (!@$%...etc)",
isUUIDv4: "Value needs to be an v4 UUID",
isSameAs: "Value not same"
};