mirror of
https://github.com/less/less.js.git
synced 2026-02-06 04:55:03 -05:00
comments.js init
This commit is contained in:
10
lib/less/tree/comment.js
Normal file
10
lib/less/tree/comment.js
Normal file
@@ -0,0 +1,10 @@
|
||||
if (typeof(window) === 'undefined') { var tree = require(require('path').join(__dirname, '..', '..', 'less', 'tree')); }
|
||||
|
||||
tree.Comment = function Comment(value) {
|
||||
this.value = value;
|
||||
};
|
||||
tree.Comment.prototype = {
|
||||
toCSS: function () {
|
||||
return this.value;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user