(value)
| 4859 | } |
| 4860 | |
| 4861 | function transition_text(value) { |
| 4862 | return this.tween("text", typeof value === "function" |
| 4863 | ? textFunction(tweenValue(this, "text", value)) |
| 4864 | : textConstant(value == null ? "" : value + "")); |
| 4865 | } |
| 4866 | |
| 4867 | function textInterpolate(i) { |
| 4868 | return function(t) { |
nothing calls this directly
no test coverage detected