swc/bundler/tests/.cache/deno/4df77deede2cb6099a13a44bba50a480d83bdb25.ts

16 lines
335 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isMultibyte.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
/**
* @ignore
*/
const multibyte = /[^\x00-\x7F]/;
export const isMultibyte = (str: string) => {
assertString(str);
return multibyte.test(str);
};