template-clean

0.2.2 • Public • Published

view on npm npm module downloads Build Status Dependency Status js-standard-style

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 <75pound@gmail.com>. Documented by jsdoc-to-markdown.

Package Sidebar

Install

npm i template-clean

Weekly Downloads

2

Version

0.2.2

License

MIT

Last publish

Collaborators

  • 75lb