@vulcan-sql/core
Version:
Core package of VulcanSQL
16 lines • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TemplateInput = void 0;
class TemplateInput {
constructor(rawValue) {
this.rawValue = rawValue;
}
raw() {
return this.rawValue;
}
parameterize(parameterizer) {
return parameterizer.generateIdentifier(this.rawValue);
}
}
exports.TemplateInput = TemplateInput;
//# sourceMappingURL=templateInput.js.map