placeholdify

1.0.2 • Public • Published

placeholdify

NPM Build Status codebeat badge Coverage Status XO code style

Simple function to put placeholders in strings.

Install

npm install placeholdify

Usage

const placeholdify = require('placeholdify');
 
placeholdify('foo {1} baz {0}', 'qux', 'bar');
//=> foo bar baz qux

placeholdify(format[, value[, ...]])

format

Type: string

String containing the placeholders.
Placeholders must be in the format {n} (example: {0}, {1}, etc.), being n the index of the value to insert into.

value

Type: mixed

Values to insert into the format string.

Package Sidebar

Install

npm i placeholdify

Weekly Downloads

1

Version

1.0.2

License

MIT

Unpacked Size

5.47 kB

Total Files

7

Last publish

Collaborators

  • alvarocastro