Replaces all occurences of a string in another string.
npm install str-replace-allstr-replace-all
===============
Replaces all occurences of a string in another string.
Installation
------------
`````
npm install --save str-replace-all
Arguments
---------
Usage
-----
`````
var strReplaceAll = require('str-replace-all');
strReplaceAll('lorem ipsum lorem ipsum lorem ipsum', 'ipsum', 'lorem');
=> "lorem lorem lorem lorem lorem lorem"