0.1.7 • Published 4 years ago

string-template-format-base v0.1.7

Weekly downloads
11
License
MIT
Repository
github
Last release
4 years ago

String Template Format: Base

Create string template tag that transform values into strings

Usage

import tag from 'string-template-format-base'
const myTag = tag(value => `[${typeof value} ${value}]`)
console.log(myTag`${123}; ${'abc'}; ${{ abc: 123 }}; ${[0, 1, 2]}`)

should print:

[number 123]; [string abc]; [object [Object object]]; [array 0,1,2]

License

MIT © Hoàng Văn Khải