UNPKG

jora

Version:

JavaScript object query engine

15 lines (12 loc) 293 B
'use strict'; function compile(node, ctx) { const arg1 = ctx.scope.arg1; ctx.put(typeof arg1 === 'string' ? arg1 : 'undefined'); } function walk() { } function stringify(node, ctx) { ctx.put('$$'); } exports.compile = compile; exports.stringify = stringify; exports.walk = walk;