UNPKG

sedk-neo4j

Version:

Cypher builder and validator for Neo4j

14 lines 363 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Variable = void 0; const util_1 = require("./util"); class Variable { constructor(name) { this.name = name; } getStmt() { return `\`${(0, util_1.escapeBackTick)(this.name)}\``; } } exports.Variable = Variable; //# sourceMappingURL=Variable.js.map