Skip to content

Commit

Permalink
fix: should export other functions
Browse files Browse the repository at this point in the history
  • Loading branch information
SalmonMode committed Feb 11, 2023
1 parent ef08f6a commit b93db62
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "primitive-predicates",
"version": "0.5.1",
"version": "0.5.2",
"description": "A simple TypeScript library providing type guards for the primitive types in JavaScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ export {
NumberAssertionError,
} from "./Errors";
export { assertIsObject, isObject } from "./Object";
export { assertIsArray, isArray } from "./Array";
export { assertIsString, isString } from "./String";
export { assertIsNumber, isNumber } from "./Number";

0 comments on commit b93db62

Please sign in to comment.