Quoted.eval returns self
This commit is contained in:
parent
b84ec0b67f
commit
c8f5997c27
@ -1,5 +1,10 @@
|
||||
node.Quoted = function Quoted(value) { this.value = value };
|
||||
node.Quoted.prototype.toCSS = function () {
|
||||
var css = this.value;
|
||||
return css;
|
||||
node.Quoted.prototype = {
|
||||
toCSS: function () {
|
||||
var css = this.value;
|
||||
return css;
|
||||
},
|
||||
eval: function () {
|
||||
return this;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user