You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Replace lodash with native JS equivalents
Removes lodash (and @types/lodash) as a dependency. All usages are
replaced with native ES2020 equivalents: optional chaining, Array
methods, Object.entries/spread, and typeof checks. A shared
isPlainObject helper is extracted to src/utils/objectutils.js.
* Convert objectutils.js to TypeScript
Replaces the CommonJS module with a typed ES module export.
Adds a `val is Record<string, unknown>` type predicate so callers
get proper type narrowing when using `isPlainObject`.
* Add license header to objectutils.ts
0 commit comments