UNPKG

jintr

Version:

A tiny JavaScript interpreter written in TypeScript.

7 lines (6 loc) 144 B
import BaseJSNode from './BaseJSNode.js'; export default class Literal extends BaseJSNode { run() { return this.node.value; } }