|
před 4 roky | |
---|---|---|
.. | ||
index.js | před 4 roky | |
license | před 4 roky | |
package.json | před 4 roky | |
readme.md | před 4 roky |
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