carto/lib/less/node/keyword.js
cloudhead ad66408b9f init
2010-02-23 13:39:05 -05:00

6 lines
135 B
JavaScript

node.Keyword = function Keyword(value) { this.value = value };
node.Keyword.prototype.toCSS = function () {
return this.value;
};