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