carto/lib/less/tree/anonymous.js

14 lines
268 B
JavaScript

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