diff --git a/index.ts b/index.ts index e25432b1..5930b0ce 100644 --- a/index.ts +++ b/index.ts @@ -33,7 +33,7 @@ export const copy: (array: ArrayLike) => T[] = const isArray: (value: any) => value is any[] = Array.isArray == null ? ((value: any) => value instanceof Array) as any - : Array.isArray; // tslint: disable-line:no-unbound-method + : Array.isArray; // tslint:disable-line:no-unbound-method export function coerce(array: ArrayLike): ReadonlyArray { return isArray(array)