mirror of
https://github.com/less/less.js.git
synced 2026-02-02 19:15:04 -05:00
10 lines
215 B
JavaScript
10 lines
215 B
JavaScript
(function (tree) {
|
|
|
|
tree.Keyword = function (value) { this.value = value };
|
|
tree.Keyword.prototype = {
|
|
eval: function () { return this },
|
|
toCSS: function () { return this.value }
|
|
};
|
|
|
|
})(require('../tree'));
|