diff --git a/src/compiler/core.ts b/src/compiler/core.ts index 3d81583f7fd..55a2b15194b 100644 --- a/src/compiler/core.ts +++ b/src/compiler/core.ts @@ -74,11 +74,6 @@ namespace ts { GreaterThan = 1 } - /* @internal */ - export function isArray(obj: any): boolean { - return Array.isArray ? Array.isArray(obj) : typeof obj === "object" && obj instanceof Array; - } - /** * Iterates through 'array' by index and performs the callback on each element of array until the callback * returns a truthy value, then returns that value.