From 877a910a7bbddeeb9a7c35a5db6a074163d70e3d Mon Sep 17 00:00:00 2001 From: Sam Verschueren Date: Wed, 4 Apr 2018 07:32:23 +0200 Subject: [PATCH] Remove moot tslint disable comment --- source/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/index.ts b/source/index.ts index e86d89f..64f5600 100644 --- a/source/index.ts +++ b/source/index.ts @@ -43,7 +43,7 @@ export const enum TypeName { } const toString = Object.prototype.toString; -const isOfType = (type: string) => (value: any): value is T => typeof value === type; // tslint:disable-line:strict-type-predicates +const isOfType = (type: string) => (value: any): value is T => typeof value === type; const getObjectType = (value: any): TypeName | null => { const objectName = toString.call(value).slice(8, -1) as string;