Bakhtina Sofya b84cb877be 1st comm | před 2 týdny | |
---|---|---|
.. | ||
node_modules | před 2 týdny | |
index.js | před 2 týdny | |
license | před 2 týdny | |
package.json | před 2 týdny | |
readme.md | před 2 týdny |
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