UNPKG

nyks

Version:

nodejs exupery style

8 lines (5 loc) 194 B
"use strict"; const endsWith = require('mout/string/endsWith'); module.exports = function(str, end) { return endsWith(str, end) ? str.substr(0, str.length - end.length) : str.toString(); };