This module provides a string variables replacer.
From an array
const str = replacer('This {0} is {1}!', ['module', 'awesome']);
const str = replacer('{0}% of code coverage, it\'s {1}...', [100, 'so amazing']);
From an object
const str = replacer('{timmy} My hobby is {hobby}...', {timmy: 'Timmmmmmmyy !!', hobby: 'running'});
const str = replacer('My name is {name}, I\'m {age}.', {name: 'stimmy', age: 25});
Scripts
Run using yarn run <script>
command.
clean - Remove temporarily folders.
build - Compile source files.
build:watch - Interactive watch mode, compile sources on change.
lint - Lint source files.
lint:fix - Fix lint source files.
test - Runs all tests with coverage.
test:watch - Interactive watch mode, runs tests on change.
License