This module provides a string variables replacer.
$ npm install stimmy --save
- Can replace variables from an object.
- Can replace variables from an array.
From import
import stimmy from 'stimmy';
From require
const stimmy = require('stimmy');
init pattern
const myReplacer = stimmy(); // defaults to ('{','}')
const myReplacer2 = stimmy('{{', '}}')
const str = myReplacer('This {0} is {1}!', ['module', 'awesome']);
// This module is awesome!
const str = myReplacer('{0}% of code coverage, it\'s {1}...', [100, 'so amazing']);
// 100% of code coverage, it's so amazing...
const str = myReplacer('{timmy} My hobby is {hobby}...', {timmy: 'Timmmmmmmyy !!', hobby: 'running'});
// Timmmmmmmyy !! My hobby is running...
const str = myReplacer('My name is {name}, I\'m {age}.', {name: 'stimmy', age: 25});
// My name is stimmy, I'm 25.
Run using npm run <script> command.
clean - remove coverage data, Jest cache and transpiled files,
lint - lint source files and tests,
typecheck - check type annotations,
test - lint, typecheck and run tests with coverage,
test-only - run tests with coverage,
test:watch - interactive watch mode to automatically re-run tests,
build - compile source files,
build:watch - interactive watch mode, compile sources on change.
MIT © Dimitri DO BAIRRO