项目作者: southpolesteve

项目描述 :
JS template strings that throw when passed undefined or null
高级语言: JavaScript
项目地址: git://github.com/southpolesteve/required-template.git
创建时间: 2018-05-17T20:59:14Z
项目社区:https://github.com/southpolesteve/required-template

开源协议:

下载


required-template

https://twitter.com/southpolesteve/status/997209218364166145

Seeing undefined or null show up in you or ES6 template strings? Instead of printing those literal values, this tagged template literal function will throw errors.

Here is an example with code:

  1. let works = 'works', isNull = null, isUndefined
  2. // The default ES6 behavior is to print the strings "undefined" and "null"
  3. `This ${works} correctly` // Prints "This works correctly"
  4. `This ${isUndefined}` // Prints "This undefined"
  5. `This ${isNull}` // Prints "This null"
  6. // 99.9% of time this is not what I want to happen!
  7. // So tag your literals with `required-template` instead!
  8. const r = require('required-template')
  9. r`This ${works} correctly` // Prints "This works correctly"
  10. r`This ${isUndefined}` // Throws an error
  11. r`This ${isNull}` // Throws an error