agsamantha/node_modules/jintr/dist/nodes/Literal.js
2024-10-02 15:15:21 -05:00

6 lines
144 B
JavaScript

import BaseJSNode from './BaseJSNode.js';
export default class Literal extends BaseJSNode {
run() {
return this.node.value;
}
}