prepend
prepend :: (Any item, Array input) => Array outputdescription
Returns a new Array after adding the item at the beginning of the input array.
example
import { prepend } from 'conductor'
const numbers = [1, 4]
prepend(3, numbers) // [3, 1, 4]Last updated