UNPKG

typedash

Version:

modern, type-safe collection of utility functions

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