0.0.0 • Published 6 years ago
babel-plugin-null-to-undefined v0.0.0
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
Related Topics
0.0.0
6 years ago