Skip to content

Commit

Permalink
Fix export of isFinite, isInteger, isSafeInteger (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
younho9 authored Jan 3, 2022
1 parent 08cd61c commit e7b4b14
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions source/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
export {arrayIncludes} from './array-includes.js';
export {asMutable} from './as-mutable.js';
export {assertError} from './assert-error.js';
export {isDefined} from './is-defined.js';
export {isEmpty} from './is-empty.js';
export {asMutable} from './as-mutable.js';
export {arrayIncludes} from './array-includes.js';
export {objectKeys} from './object-keys.js';
export {objectFromEntries} from './object-from-entries.js';
export {isFinite} from './is-finite.js';
export {isInteger} from './is-integer.js';
export {isSafeInteger} from './is-safe-integer.js';
export {objectEntries} from './object-entries.js';
export {objectFromEntries} from './object-from-entries.js';
export {objectHasOwn} from './object-has-own.js';
export {objectKeys} from './object-keys.js';

0 comments on commit e7b4b14

Please sign in to comment.