UNPKG

194 BJavaScriptView Raw
1"use strict";
2
3const endsWith = require('mout/string/endsWith');
4
5module.exports = function(str, end) {
6 return endsWith(str, end) ? str.substr(0, str.length - end.length) : str.toString();
7};