mirror of
https://github.com/less/less.js.git
synced 2026-01-24 14:48:00 -05:00
16 lines
387 B
JavaScript
16 lines
387 B
JavaScript
if (typeof(window) === 'undefined') { var tree = require(require('path').join(__dirname, '..', '..', 'less', 'tree')); }
|
|
|
|
tree.Quoted = function Quoted(value, content) {
|
|
this.value = value;
|
|
this.content = content;
|
|
};
|
|
tree.Quoted.prototype = {
|
|
toCSS: function () {
|
|
var css = this.value;
|
|
return css;
|
|
},
|
|
eval: function () {
|
|
return this;
|
|
}
|
|
};
|