comments.js init

This commit is contained in:
cloudhead 2010-03-06 17:54:11 -05:00
parent 2b0853de81
commit 57013ebdf9

10
lib/less/tree/comment.js Normal file
View 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;
}
};