index.js 180 B

12345678
  1. 'use strict';
  2. var whichTypedArray = require('which-typed-array');
  3. /** @type {import('.')} */
  4. module.exports = function isTypedArray(value) {
  5. return !!whichTypedArray(value);
  6. };