Files
30-seconds-of-code/test/isTypedArray/isTypedArray.js
Angelos Chalaris 4f1e8b48b6 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;