Muqriz 48f16bfc3e initail first | vor 4 Monaten | |
---|---|---|
.. | ||
node_modules/escape-string-regexp | vor 4 Monaten | |
index.js | vor 4 Monaten | |
license | vor 4 Monaten | |
package.json | vor 4 Monaten | |
readme.md | vor 4 Monaten |
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