Muqriz 48f16bfc3e initail first | hace 4 meses | |
---|---|---|
.. | ||
node_modules/escape-string-regexp | hace 4 meses | |
index.js | hace 4 meses | |
license | hace 4 meses | |
package.json | hace 4 meses | |
readme.md | hace 4 meses |
Strip a substring from the start/end of a string
$ npm install --save strip-outer
const stripOuter = require('strip-outer');
stripOuter('foobarfoo', 'foo');
//=> 'bar'
stripOuter('unicorncake', 'unicorn');
//=> 'cake'
MIT © Sindre Sorhus