gatsby
Version:
Blazing fast modern site generator for React
22 lines (20 loc) • 433 B
JavaScript
exports.__esModule = true;
exports.default = stripPrefix;
/**
* Remove a prefix from a string. Return the input string if the given prefix
* isn't found.
*/
function stripPrefix(str, prefix = ``) {
if (!prefix) {
return str;
}
if (str === prefix) {
return `/`;
}
if (str.startsWith(`${prefix}/`)) {
return str.slice(prefix.length);
}
return str;
}
//# sourceMappingURL=strip-prefix.js.map
;