mirror of
https://github.com/less/less.js.git
synced 2026-02-03 11:35:08 -05:00
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
if (typeof(require) !== 'undefined') { var tree = require('less/tree') }
|
|
|
|
tree.Anonymous = function Anonymous(string) {
|
|
this.value = string.content || string;
|
|
};
|
|
tree.Anonymous.prototype = {
|
|
toCSS: function () {
|
|
return this.value;
|
|
},
|
|
eval: function () { return this }
|
|
};
|