JavaScript - Implement a custom isTypedArray() function

Medium
0.0% Acceptance

In this lab, your task is to create a custom implementation of lodash's _.isTypedArray() function without using lodash. Your implementation should work similarly to lodash's isTypedArray().\n\nYour implementation should work with normal arrays as well as typed arrays like Int8Array, Uint8Array, etc.\n\nYou also need to write some unit tests for the custom isTypedArray() function using Node.js' built-in assert module.