Skip to content

Commit

Permalink
chore: remove unused ts directive
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnagydavid committed Feb 29, 2024
1 parent 1db7012 commit e0a207c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/object/object.util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,6 @@ export function _set<T extends AnyObject>(obj: T, path: PropertyPath, value: any
a[c]
: // No: create the key. Is the next key a potential array-index?
(a[c] =
// @ts-expect-error
// eslint-disable-next-line
Math.abs(path[i + 1]) >> 0 === +path[i + 1]
? [] // Yes: assign a new array object
Expand Down

0 comments on commit e0a207c

Please sign in to comment.