0.1.7 • Published 4 years ago

string-template-format-json v0.1.7

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

String Template Format: JSON

String template literal tag that converts values to JSON text

Usage

import json from 'string-template-format-json'
console.log(json`number ${123}; string: ${'abc'}; object: ${{ abc: 123 }}; array: ${[0, 1, 2]}`)

should print:

number: 123; string: "abc"; object: {"abc":123}; array: [0,1,2]

License

MIT © Hoàng Văn Khải