David Itkin

Results 1 issues of David Itkin

Running into bug where using `setIn` to write to out-of-bounds array indices just pushes to array instead. Code: `setIn([2], 'abc', [])` Expected: `[empty, empty, 'abc']` Actual: `['abc']` The cause is...