We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0de5a commit f18e203Copy full SHA for f18e203
1 file changed
src/compiler/core.ts
@@ -74,11 +74,6 @@ namespace ts {
74
GreaterThan = 1
75
}
76
77
- /* @internal */
78
- export function isArray(obj: any): boolean {
79
- return Array.isArray ? Array.isArray(obj) : typeof obj === "object" && obj instanceof Array;
80
- }
81
-
82
/**
83
* Iterates through 'array' by index and performs the callback on each element of array until the callback
84
* returns a truthy value, then returns that value.
0 commit comments