Skip to content

Commit

Permalink
v2.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xan105 committed Nov 30, 2023
1 parent cf61436 commit cfbd06b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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": "@xan105/is",
"version": "2.9.2",
"version": "2.9.3",
"description": "Collection of various checks for asserting types and values at runtime",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion types/opt/obj.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export function asError(value: unknown): Error | null;
export function asRegExp(value: unknown): RegExp | null;
export function asUint8Array(value: unknown): Uint8Array | Buffer | null;
export function asBuffer(value: unknown): Uint8Array | Buffer | null; //alias (backward compatibility)
export function asPromise(value: unknown): Promise | null;
export function asPromise(value: unknown): Promise<unknown> | null;
export function asFunction(value: unknown): (...args: unknown[]) => unknown;

0 comments on commit cfbd06b

Please sign in to comment.