strings handling library for JavaScript
npm install fa-strings.js 
bash
npm install -g gulp
`
Next, clone the repository and install project dependencies:
`bash
Fetch only the latest commits.
git clone --depth=1 git@github.com:fusionalliance/strings.js.git
cd strings.js
npm install
`
$3
`javascript
var strings, format, formattedString;
strings = require('strings');
format = 'this is test {testGiven} for a showing how to use {name}';
formattedString = strings.format(format, {
testGiven: 'stringFormatter',
name: 'format'
});
`
$3
Simply run:
`bash
gulp karma
``