lix-website/themes/lix/assets/bootstrap/node_modules/is-typed-array/index.js
2024-04-26 22:49:34 -06:00

9 lines
180 B
JavaScript

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