Skip to content

Commit

Permalink
fix(compat): add missing export (#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Sketon authored Oct 3, 2024
1 parent 8a34bc4 commit 35aa0bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/compat/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export { orderBy } from './array/orderBy.ts';
export { sortBy } from './array/sortBy.ts';
export { size } from './array/size.ts';
export { some } from './array/some.ts';
export { take } from './array/take.ts';
export { zipObjectDeep } from './array/zipObjectDeep.ts';
export { filter } from './array/filter.ts';
export { head as first } from '../array/head.ts';
Expand Down Expand Up @@ -105,6 +106,7 @@ export { isNumber } from './predicate/isNumber.ts';
export { isNaN } from './predicate/isNaN.ts';
export { isArrayLikeObject } from './predicate/isArrayLikeObject.ts';
export { isNil } from './predicate/isNil.ts';
export { isEqualWith } from './predicate/isEqualWith.ts';

export { camelCase } from './string/camelCase.ts';
export { kebabCase } from './string/kebabCase.ts';
Expand Down

0 comments on commit 35aa0bf

Please sign in to comment.