Bakhtina Sofya b84cb877be 1st comm | 2 weeks ago | |
---|---|---|
.. | ||
node_modules | 2 weeks ago | |
index.js | 2 weeks ago | |
license | 2 weeks ago | |
package.json | 2 weeks ago | |
readme.md | 2 weeks ago |
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