isArray.ts 102 B

123
  1. export const isArray = obj => {
  2. return Object.prototype.toString.call(obj) === '[object Array]';
  3. };