estree-to-babel
Advanced tools
Comparing version 4.1.0 to 4.1.1
@@ -9,4 +9,7 @@ 'use strict'; | ||
module.exports = (node) => { | ||
const {value} = node; | ||
const {type, value} = node; | ||
if (type !== 'Literal') | ||
return; | ||
if (isNull(value)) { | ||
@@ -13,0 +16,0 @@ node.type = 'NullLiteral'; |
{ | ||
"name": "estree-to-babel", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)", | ||
@@ -5,0 +5,0 @@ "description": "convert estree ast to babel", |
Sorry, the diff of this file is not supported yet
16443
265