bool => boolean

This commit is contained in:
Itai Steinherz 2018-10-25 00:50:46 +03:00
parent dedd701b36
commit 522c7482f2
No known key found for this signature in database
GPG key ID: BE977733D203B00A

View file

@ -136,7 +136,7 @@ namespace is { // tslint:disable-line:no-namespace
// tslint:enable:variable-name
export const nullOrUndefined = (value: any): value is null | undefined => null_(value) || undefined(value);
export const numericString = (value: string): bool =>
export const numericString = (value: string): boolean =>
!Number.isNaN(Number(value));
export const array = Array.isArray;