10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
(function (tree) {
|
|
|
|
tree.Keyword = function Keyword(value) { this.value = value };
|
|
tree.Keyword.prototype = {
|
|
eval: function () { return this },
|
|
toCSS: function () { return this.value }
|
|
};
|
|
|
|
})(require('less/tree'));
|