Initial commit - Event Planner application
This commit is contained in:
17
node_modules/kysely/dist/esm/operation-node/unary-operation-node.js
generated
vendored
Normal file
17
node_modules/kysely/dist/esm/operation-node/unary-operation-node.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/// <reference types="./unary-operation-node.d.ts" />
|
||||
import { freeze } from '../util/object-utils.js';
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export const UnaryOperationNode = freeze({
|
||||
is(node) {
|
||||
return node.kind === 'UnaryOperationNode';
|
||||
},
|
||||
create(operator, operand) {
|
||||
return freeze({
|
||||
kind: 'UnaryOperationNode',
|
||||
operator,
|
||||
operand,
|
||||
});
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user