刘琳琳 97c35fdf0d 航汇HHArome小程序容器演示 | há 2 meses atrás | |
---|---|---|
.. | ||
index.js | há 2 meses atrás | |
license | há 2 meses atrás | |
package.json | há 2 meses atrás | |
readme.md | há 2 meses atrás |
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