(name, interpolate, value1)
| 4446 | } |
| 4447 | |
| 4448 | function attrConstant(name, interpolate, value1) { |
| 4449 | var string00, |
| 4450 | string1 = value1 + "", |
| 4451 | interpolate0; |
| 4452 | return function() { |
| 4453 | var string0 = this.getAttribute(name); |
| 4454 | return string0 === string1 ? null |
| 4455 | : string0 === string00 ? interpolate0 |
| 4456 | : interpolate0 = interpolate(string00 = string0, value1); |
| 4457 | }; |
| 4458 | } |
| 4459 | |
| 4460 | function attrConstantNS(fullname, interpolate, value1) { |
| 4461 | var string00, |
nothing calls this directly
no test coverage detected