Skip to main content
Module

x/rambda/isFunction.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { type } from './type'
export function isFunction(fn){ return [ 'Async', 'Function' ].includes(type(fn))}