(arrayOrObject)
| 69262 | return targetArray; |
| 69263 | } |
| 69264 | from(arrayOrObject) { |
| 69265 | return Array.isArray(arrayOrObject) ? this.copy(arrayOrObject) : this.fromObject(arrayOrObject); |
| 69266 | } |
| 69267 | to(arrayOrObject) { |
| 69268 | if (arrayOrObject === this) return this; |
| 69269 | return (0, _common.isArray)(arrayOrObject) ? this.toArray(arrayOrObject) : this.toObject(arrayOrObject); |
nothing calls this directly
no test coverage detected