Initial commit - Event Planner application
This commit is contained in:
20
node_modules/kysely/dist/cjs/operation-node/binary-operation-node.js
generated
vendored
Normal file
20
node_modules/kysely/dist/cjs/operation-node/binary-operation-node.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.BinaryOperationNode = void 0;
|
||||
const object_utils_js_1 = require("../util/object-utils.js");
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
exports.BinaryOperationNode = (0, object_utils_js_1.freeze)({
|
||||
is(node) {
|
||||
return node.kind === 'BinaryOperationNode';
|
||||
},
|
||||
create(leftOperand, operator, rightOperand) {
|
||||
return (0, object_utils_js_1.freeze)({
|
||||
kind: 'BinaryOperationNode',
|
||||
leftOperand,
|
||||
operator,
|
||||
rightOperand,
|
||||
});
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user