swc/bundler/tests/.cache/deno/1428cf4db6bc088ba76d68090af3bdada70f249f.ts

16 lines
373 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isSlug.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
/**
* @ignore
*/
const charsetRegex = /^[^\s-_](?!.*?[-_]{2,})([a-z0-9-\\]{1,})[^\s]*[^-_\s]$/;
export const isSlug = (str: string) => {
assertString(str);
return charsetRegex.test(str);
};