template-clean
v0.2.2
Published
Template literal tag function to replace null and undefined values with an empty string
Downloads
1
Maintainers
Readme
template-clean
Template literal tag function to replace null
and undefined
values with an empty string.
Example
> clean = require('template-clean')
> const word = 'something'
> const nothing = null
> `a word: ${word}. Nothing: ${nothing}`
'a word: something. Nothing: null'
> clean`a word: ${word}. Nothing: ${nothing}`
'a word: something. Nothing: '
clean(strings, ...expressions) ⏏
Kind: Exported function
| Param | Type | | --- | --- | | strings | Array.<string> | | ...expressions | any |
© 2015-17 Lloyd Brookes <[email protected]>. Documented by jsdoc-to-markdown.