UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

8 lines (7 loc) • 209 B
function withoutLeadingCharacters(string, characters) { return string.replace(new RegExp(`^${characters}`), ""); } export { withoutLeadingCharacters }; //# sourceMappingURL=withoutLeadingCharacters.js.map