$ cnpm install babel-plugin-null-to-undefined
Babel plugin that transforms all null
literals to undefined
.
Input:
const foo = null
const bar = foo === null
Output:
const foo = undefined
const bar = foo === undefined
Intent to stop using null
in my JS code
Copyright 2014 - 2017 © taobao.org |