@sequeljs/ast
Version:
A SQL AST manager for JavaScript
18 lines • 541 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Node_1 = require("./Node");
class BindParam extends Node_1.default {
constructor(value) {
super();
this.value = value;
}
isInfinite() {
return this.value === Infinity || this.value === -Infinity;
}
isUnboundable() {
var _a, _b;
return (_b = (_a = this.value).isUnboundable) === null || _b === void 0 ? void 0 : _b.call(_a);
}
}
exports.default = BindParam;
//# sourceMappingURL=BindParam.js.map