Add isArray in devTools utils (#22438)

This commit is contained in:
Behnam Mohammadi
2021-09-28 00:47:30 +03:30
committed by GitHub
parent d3e0869324
commit 580e2f56d5
2 changed files with 17 additions and 4 deletions

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;