import * as froebel from "https://deno.land/x/froebel@v0.21.3/function.ts";
Variables
Like | |
Same as nullishChain but accept asynchronous functions too. | |
Given a list of functions that accept the same parameters, returns a function that takes these parameters and invokes all of the given functions. | |
Same as bundle, but return synchronously. | |
Take a list of functions that accept the same parameters and call them all with the provided arguments. | |
Creates a debounced function that delays invoking | |
Given a function and its nth..last arguments, return a function accepting arguments 0..n-1. | |
Identity function. | |
Returns a version of the function | |
Returns a copy of | |
v noop | |
Given a list of functions that accept the same parameters, returns a function that given these arguments returns the result of the first function whose result is not nullish. | |
v once | Special case of limitInvocations. |
Partially apply a function. | |
v pipe | Given a list of functions returns a function that will execute the given functions one after another, always passing the result of the previous function as an argument to the next function. |
Create a throttled function that invokes |