Files
less.js/lib/less/tree/anonymous.js
2011-11-12 13:13:36 +01:00

14 lines
255 B
JavaScript

(function (tree) {
tree.Anonymous = function (string) {
this.value = string.value || string;
};
tree.Anonymous.prototype = {
toCSS: function () {
return this.value;
},
eval: function () { return this }
};
})(require('../tree'));