UNPKG

jora

Version:

JavaScript object query engine

20 lines (17 loc) 337 B
'use strict'; function compile(node, ctx) { ctx.put('('); ctx.node(node.body); ctx.put(')'); } function walk(node, ctx) { ctx.node(node.body); } function stringify(node, ctx) { ctx.put('('); ctx.node(node.body); ctx.put(')'); } exports.compile = compile; exports.stringify = stringify; exports.walk = walk;