(v)
| 21 | // True if the value is an instance of a class that exposes a numeric-percent |
| 22 | // `lerp(other, percent)` method (Vector2, Color, or any future class). |
| 23 | function isLerpable(v) { return v && typeof v.lerp === 'function'; } |
| 24 | |
| 25 | /////////////////////////////////////////////////////////////////////////////// |
| 26 |
no outgoing calls
no test coverage detected