mirror of
https://github.com/less/less.js.git
synced 2026-02-09 14:35:44 -05:00
11 lines
223 B
JavaScript
11 lines
223 B
JavaScript
node.Quoted = function Quoted(value) { this.value = value };
|
|
node.Quoted.prototype = {
|
|
toCSS: function () {
|
|
var css = this.value;
|
|
return css;
|
|
},
|
|
eval: function () {
|
|
return this;
|
|
}
|
|
};
|