2.0.0 • Published 3 years ago

strip-outer v2.0.0

Weekly downloads
6,282,082
License
MIT
Repository
github
Last release
3 years ago

strip-outer

Strip a substring from the start/end of a string

Install

$ npm install strip-outer

Usage

import stripOuter from 'strip-outer';

stripOuter('foobarfoo', 'foo');
//=> 'bar'

stripOuter('unicorncake', 'unicorn');
//=> 'cake'