mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-05-15 07:34:04 +08:00
476 B
476 B
strip-outer 
Strip a substring from the start/end of a string
Install
$ npm install --save strip-outer
Usage
const stripOuter = require('strip-outer');
stripOuter('foobarfoo', 'foo');
//=> 'bar'
stripOuter('unicorncake', 'unicorn');
//=> 'cake'
License
MIT © Sindre Sorhus