Skip to content

Commit

Permalink
add object typeguard to isObject method
Browse files Browse the repository at this point in the history
  • Loading branch information
espressoroaster committed Jul 5, 2017
1 parent 95b0d34 commit 639df54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typings/datalib.d.ts
Expand Up @@ -18,7 +18,7 @@ declare module 'datalib/src/util' {
export function vals(a: any): any[];
export function truncate(a: string, length: number): string;
export function toMap(a: any): {[key: string]: 1};
export function isObject(a: any): a is any;
export function isObject(a: any): a is object;
export function isString(a: any): a is string;
export function isNumber(a: any): a is number;
export function isBoolean(a: any): a is boolean;
Expand Down

0 comments on commit 639df54

Please sign in to comment.