carto/lib/less/tree/comment.js

11 lines
230 B
JavaScript

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