mirror of
https://github.com/less/less.js.git
synced 2026-02-04 20:15:06 -05:00
13 lines
226 B
JavaScript
13 lines
226 B
JavaScript
(function (tree) {
|
|
|
|
tree.Comment = function Comment(value) {
|
|
this.value = value;
|
|
};
|
|
tree.Comment.prototype = {
|
|
toCSS: function (env) {
|
|
return env.compress ? '' : this.value;
|
|
}
|
|
};
|
|
|
|
})(require('less/tree'));
|