apply
apply :: (Function fn, Array args) => Any valuedescription
example
import { apply } from 'conductor'
const numbers = [2, 1, 8, 3, 12]
apply(Math.max, numbers) // 12Last updated
apply :: (Function fn, Array args) => Any valueimport { apply } from 'conductor'
const numbers = [2, 1, 8, 3, 12]
apply(Math.max, numbers) // 12Last updated