which-istypedarray
Version:
check if [a] an array or [b] is an typed array or [c] an buffer array or [d] specific type using the package
24 lines (18 loc) • 498 B
JavaScript
/**
*
* Package: which-istypedarray
* Author: Ganesh B
* Description:
* Install: npm i which-istypedarray --save
* Github: https://github.com/ganeshkbhat/which-istypedarray/
* npmjs Link: https://www.npmjs.com/package/which-istypedarray/
* File: index.js
* File Description:
*
*
*/
/* eslint no-console: 0 */
;
import { default as istypedarray } from "./index.js";
export default { ...istypedarray }
export const isTypedArray = istypedarray;