You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
324 B
JavaScript

2 years ago
"use strict";
const { NoMatch } = require("../symbols");
2 years ago
const coreOps = require("./index");
2 years ago
module.exports = function* test(instruction, state, context) {
2 years ago
let result = yield coreOps.internalCall.peek({ rule: instruction.rule }, state, context);
2 years ago
if (result === NoMatch) {
return false;
} else {
return true;
}
};