/** * @author [Tristan Valcke]{@link https://github.com/Itee} * @license [BSD-3-Clause]{@link https://opensource.org/licenses/BSD-3-Clause} * * @module sources/cores/arrays * @description Export the validation methods about Arrays */ export * from './isArray' export * from './isArrayOfArray' export * from './isArrayOfBoolean' export * from './isArrayOfFunction' export * from './isArrayOfMultiElement' export * from './isArrayOfNull' export * from './isArrayOfNumber' export * from './isArrayOfObject' export * from './isArrayOfSingleElement' export * from './isArrayOfString' export * from './isArrayOfUndefined' export * from './isEmptyArray'