UNPKG

99 BJavaScriptView Raw
1var Literal = module.exports = function(value) {
2 this.type = 'Literal';
3 this.value = value;
4};