File: D:/HostingSpaces/SBogers10/anvil.komma.pro/node_modules/strip-outer/readme.md
# 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)