Files
less.js/lib/less/node/quoted.js
2010-02-25 17:55:26 -05:00

11 lines
223 B
JavaScript

node.Quoted = function Quoted(value) { this.value = value };
node.Quoted.prototype = {
toCSS: function () {
var css = this.value;
return css;
},
eval: function () {
return this;
}
};