UNPKG

280 BJavaScriptView Raw
1tr = require("traverse")
2obj = {"a": "[false]", "b": "[]", c: "[\"a string\"]"}
3o = JSON.parse(JSON.stringify(obj))
4tr(o).forEach(function(e){
5 if (this.isLeaf) {
6 //if (e === "[false]"){ this.update(false) }
7 if (e === "[]") { this.update([]); }
8 }
9})