UNPKG
@jplorg/jpl
Version:
latest (1.4.0)
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
JPL interpreter
github.com/jplorg/jpl
jplorg/jpl
@jplorg/jpl
/
lib
/
program
/
ops
/
opConstantFalse.js
16 lines
(15 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
=
void
0
;
var
_default =
exports
.
default
= {
/** {} */
op
(
runtime, input, params, scope, next
) {
return
next
(
false
, scope); },
/** {} */
map
(
) {
return
{}; } };