mirror of
https://github.com/less/less.js.git
synced 2026-01-22 21:58:14 -05:00
11 lines
230 B
JavaScript
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;
|
|
}
|
|
};
|