Add isArray in devTools utils (#22438)

This commit is contained in:
Behnam Mohammadi
2021-09-27 17:17:30 -04:00
committed by GitHub
parent d3e0869324
commit 580e2f56d5
2 changed files with 17 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
const isArray = Array.isArray;
export default isArray;