Files
30-seconds-of-code/test/isTypedArray/isTypedArray.js
2018-02-04 17:58:57 +02:00

3 lines
87 B
JavaScript

const isTypedArray = val => val instanceof TypedArray;
module.exports = isTypedArray;