index.js 153 B

1234567
  1. 'use strict';
  2. var whichTypedArray = require('which-typed-array');
  3. module.exports = function isTypedArray(value) {
  4. return !!whichTypedArray(value);
  5. };