Skip to content

Commit

Permalink
Put back changes that are in #30 and #31
Browse files Browse the repository at this point in the history
  • Loading branch information
benasher44 committed Jan 9, 2024
1 parent 6152ffe commit 6e6ce4d
Show file tree
Hide file tree
Showing 4 changed files with 1,426 additions and 816 deletions.
10 changes: 5 additions & 5 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from './array.js';
export * from './collection.js';
export * from './fn.js';
export * from './lang.js';
export * from './object.js';
export * from './array';
export * from './collection';
export * from './fn';
export * from './lang';
export * from './object';
2 changes: 1 addition & 1 deletion lib/lang.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
Collection
} from './collection.js';
} from './collection';

export function isUndefined(obj: any): obj is null | undefined;
export function isDefined(obj: any): obj is Exclude<any, null | undefined>;
Expand Down
Loading

0 comments on commit 6e6ce4d

Please sign in to comment.