Détail du package

strip-outer

sindresorhus18.5mMIT2.0.0

Strip a substring from the start/end of a string

strip, trim, remove, outer

readme

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'