mirror of
https://github.com/less/less.js.git
synced 2026-02-15 17:35:39 -05:00
17 lines
319 B
JavaScript
17 lines
319 B
JavaScript
(function (tree) {
|
|
|
|
tree.Quoted = function (str, content) {
|
|
this.value = content || '';
|
|
this.quote = str.charAt(0);
|
|
};
|
|
tree.Quoted.prototype = {
|
|
toCSS: function () {
|
|
return this.quote + this.value + this.quote;
|
|
},
|
|
eval: function () {
|
|
return this;
|
|
}
|
|
};
|
|
|
|
})(require('less/tree'));
|