Files
less.js/lib/less/node/keyword.js
2010-03-03 11:59:08 -05:00

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 }
};