[flow] misc warnings

This commit is contained in:
Salakar 2017-09-25 23:05:07 +01:00
parent 73f7ceadcc
commit c4472cf8e7
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ export function isFunction(item?: any): boolean {
* @param value * @param value
* @return {boolean} * @return {boolean}
*/ */
export function isString(value): Boolean { export function isString(value: any): boolean {
return typeof value === 'string'; return typeof value === 'string';
} }