carto/lib/less/tree/quoted.js
2010-06-19 01:51:26 -04:00

17 lines
283 B
JavaScript

(function (tree) {
tree.Quoted = function (value, content) {
this.value = value;
this.content = content;
};
tree.Quoted.prototype = {
toCSS: function () {
return this.value;
},
eval: function () {
return this;
}
};
})(require('less/tree'));