carto/lib/less/tree/anonymous.js

12 lines
295 B
JavaScript
Raw Normal View History

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