mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
fix merge issues
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user