util.format with keys and values
npm install format-object> util.format with object instead of argument list.
```
$ npm install --save format-object
`js
const format = require('format-object');
format('Hello, :name', {name: 'Joe'});
// => 'Hello, Joe'
`
#### input
Type: string
Input string.
#### params
Type: object`
Object of params to replace.
MIT © Vadim Demedes