UNPKG

typedash

Version:

modern, type-safe collection of utility functions

13 lines (11 loc) 296 B
'use strict'; // src/functions/ensurePrefix/ensurePrefix.ts function ensurePrefix(string, prefix) { if (string.startsWith(prefix)) { return string; } return `${prefix}${string}`; } exports.ensurePrefix = ensurePrefix; //# sourceMappingURL=out.js.map //# sourceMappingURL=index.cjs.map