UNPKG

focalxaiinspection

Version:

Focalx AI Inspection

13 lines (12 loc) 302 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UrlSlug = void 0; var UrlSlug = function UrlSlug(str) { str = str.toLowerCase(); str = str.replace(/[^a-z0-9]+/g, '-'); str = str.replace(/^-+|-+$/g, ''); return str + '.html'; }; exports.UrlSlug = UrlSlug;