📄 index.js
/home/palash/git/site/node_modules/is-typed-array/index.js
Language: js • Lines: 8
'use strict';

var whichTypedArray = require('which-typed-array');

/** @type {import('.')} */
module.exports = function isTypedArray(value) {
	return !!whichTypedArray(value);
};