master
Christopher Chedeau 2017-05-28 15:09:22 -07:00
parent 97775dc94c
commit 63742bac56
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ function massageAST(ast) {
const newObj = {};
for (const key in ast) {
if (typeof ast[key] !== "function") {
newObj[key] = massageAST(ast[key]);
newObj[key] = massageAST(ast[key]);
}
}