@chix/flow
Version:
15 lines • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function runPortBox(packetContainer) {
var sb = this.fn;
sb.set('$', packetContainer);
sb.set('state', this.state);
var ret = sb.run(this);
this.state = sb.state;
if (ret === false) {
throw Error('Returning false from sandbox deprecated');
}
this.runCount++;
}
exports.runPortBox = runPortBox;
//# sourceMappingURL=runPortBox.js.map