Skip to content

Variable: slug

ts
const slug: Validator<string>;

Slug validation / URL slug 校验

Example

ts
slug('my-post-title') // => { isValid: true, message: undefined }
slug('My Post') // => { isValid: false, message: 'Invalid slug / slug格式无效' }

Since

1.0.0

Released under the MIT License.