Files
less.js/lib/less/node/quoted.js
2010-03-05 14:55:21 -05:00

16 lines
387 B
JavaScript

if (typeof(window) === 'undefined') { var tree = require(require('path').join(__dirname, '..', '..', 'less', 'tree')); }
tree.Quoted = function Quoted(value, content) {
this.value = value;
this.content = content;
};
tree.Quoted.prototype = {
toCSS: function () {
var css = this.value;
return css;
},
eval: function () {
return this;
}
};