logo

Function

This is a collection of functions for working with functions.

Check if a value is an instance of a function

The isInstanceOf function checks if a value is an instance of a function.

import { isInstanceOf } from '@aracna/core';

// will log true
console.log(isInstanceOf(new Blob([]), Blob));