Sha256: a93f29e14bbef63ab00ceade88f9ef93e0c7347babfd84a4779616f3c7f89775
Contents?: true
Size: 506 Bytes
Versions: 100
Compression:
Stored size: 506 Bytes
Contents
/*! * Stylus - JSLiteral * Copyright(c) 2010 LearnBoost <dev@learnboost.com> * MIT Licensed */ /** * Module dependencies. */ var Node = require('./node') , nodes = require('./'); /** * Initialize a new `JSLiteral` with the given `str`. * * @param {String} str * @api public */ var JSLiteral = module.exports = function JSLiteral(str){ Node.call(this); this.val = str; this.string = str; }; /** * Inherit from `Node.prototype`. */ JSLiteral.prototype.__proto__ = Node.prototype;
Version data entries
100 entries across 86 versions & 2 rubygems