twreporter-react
Version:
React-Redux site for The Reporter Foundation in Taiwan
29 lines (16 loc) • 469 B
Markdown
# strip-outer [](https://travis-ci.org/sindresorhus/strip-outer)
> Strip a substring from the start/end of a string
## Install
```
$ npm install --save strip-outer
```
## Usage
```js
var stripOuter = require('strip-outer');
stripOuter('foobarfoo', 'foo');
//=> bar
stripOuter('unicorncake', 'unicorn');
//=> cake
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)