mirror of
https://github.com/less/less.js.git
synced 2026-04-09 03:00:20 -04:00
8 lines
299 B
JavaScript
8 lines
299 B
JavaScript
if (typeof(window) === 'undefined') { var tree = require(require('path').join(__dirname, '..', '..', 'less', 'tree')); }
|
|
|
|
tree.Keyword = function Keyword(value) { this.value = value };
|
|
tree.Keyword.prototype = {
|
|
eval: function () { return this },
|
|
toCSS: function () { return this.value }
|
|
};
|