Files
30-seconds-of-code/test/isTypedArray/isTypedArray.js
Angelos Chalaris cc7b76d0b3 Test files linted
2018-08-03 10:39:26 +03:00

3 lines
86 B
JavaScript

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