@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
20 lines (14 loc) • 584 B
text/typescript
import { alpha as validators } from './constants';
export function alpha (rawValue: any, options: any = {}): boolean {
const locale = options.locale || 'en-US';
const process = (v: any) => {
let value = String(v);
if (options.allowDashes) { value = value.replace(/-/g, ''); }
if (options.allowSpaces) { value = value.replace(/ /g, ''); }
return value;
};
if (rawValue.constructor === Array) {
return rawValue.every((v) => validators[locale].test(process(v)));
}
return validators[locale].test(process(rawValue));
}