@jplorg/jpl
Version:
JPL interpreter
18 lines (17 loc) • 385 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = exports.default = {
/** { value: any } */
op(runtime, input, params, scope, next) {
return next(params.value ?? null, scope);
},
/** { value: any } */
map(runtime, params) {
return {
value: runtime.normalizeValue(params.value)
};
}
};