carto/lib/less/tree/quoted.js

16 lines
339 B
JavaScript

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