formatify
Simple text formatter for node.js and browser
Install
npm install formatify
Usage
// format with arrayformat'{0} is a sample {1}', // => "this is a sample text" // format with objectformat'{key1} is a sample {key2}', // => "this is a sample text" // repeat twice to escape placeholdersformat'{{key1}} is a sample {key2}', // => {key1} is a sample text // the placeholder syntax can be configured with 3rd argumentformat'%0$ is a sample %1$', , // => "this is a sample text"format'%p1$ is a sample %p1$', , // => "this is a sample text"