Surround a string with another string
npm install string-surround  
> Surround a string with another string
npm install --save string-surround
`Usage
`javascript
import stringSurround from 'string-surround'stringSurround('hello', '123')
// => '123hello123'
stringSurround('', 'ABC')
// => 'ABCABC'
`API
$3
Returns
string surrounded with surroundingString.#### string
type:
stringThe string to surround.
#### surroundingString
type:
stringdefault:
''The string to surround around
string`.