mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
20 lines
520 B
TypeScript
20 lines
520 B
TypeScript
|
// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isAlpha.ts
|
||
|
|
||
|
|
||
|
// @ts-ignore allowing typedoc to build
|
||
|
import { assertString } from '../helpers/assertString.ts';
|
||
|
// @ts-ignore allowing typedoc to build
|
||
|
import { alpha } from '../helpers/alpha.ts';
|
||
|
|
||
|
export const isAlpha = (str: string, locale = 'en-US') => {
|
||
|
assertString(str);
|
||
|
|
||
|
if (locale in alpha) {
|
||
|
return (alpha as any)[locale].test(str);
|
||
|
}
|
||
|
|
||
|
throw new Error(`Invalid locale '${locale}'`);
|
||
|
};
|
||
|
|
||
|
export const alphaLocales = Object.keys(alpha);
|