Files
30-seconds-of-code/test/isTypedArray/isTypedArray.js
2018-01-17 13:40:40 -05:00

2 lines
85 B
JavaScript

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