Lines Matching refs:asynchronous
106 * @returns {AsyncFunction} An asynchronous wrapper of the `func`. To be
539 * // asynchronous function that reads a json file and parses the contents as json object
666 * // asynchronous function that returns the file size in bytes
1742 * @param {AsyncFunction} worker - An asynchronous function for processing an array
1793 * @param {AsyncFunction} worker - An asynchronous function for processing an array
1872 * // asynchronous function that computes the file size in bytes
1974 * @param {...AsyncFunction} functions - the asynchronous functions to compose
2023 * Creates a function which is a composition of the passed asynchronous
2038 * @param {...AsyncFunction} functions - the asynchronous functions to compose
2039 * @returns {Function} an asynchronous function that is the composed
2040 * asynchronous `functions`
2357 * // asynchronous function that checks if a file exists
2518 * @param {AsyncFunction} test - asynchronous truth test to perform after each
2564 * @param {AsyncFunction} test - asynchronous truth test to perform after each
2619 * // asynchronous function that deletes a file
2768 * doSomeIO(arg, callback); // this IO would be asynchronous
2825 * // asynchronous function that checks if a file exists
3012 * // asynchronous function that checks if a file exists
3108 * Calls the asynchronous function `fn` with a callback parameter that allows it
3236 * // asynchronous function that detects file type as none, file, or directory
3433 * // asynchronous function that returns the file size in bytes
4445 * // asynchronous function that checks if a file exists
4697 * @param {AsyncFunction} task - the asynchronous function to wrap.
4935 * // asynchronous function that checks if a file exists
5088 * // asynchronous function that returns the file size in bytes
5232 * Sets a time limit on an asynchronous function. If the function does not call
5423 * // asynchronous function that returns the file size, transformed to human-readable format
5480 * // asynchronous function that returns the file size, transformed to human-readable format
5625 * @param {AsyncFunction} test - asynchronous truth test to perform before each
5687 * @param {AsyncFunction} test - asynchronous truth test to perform before each
5800 * An "async function" in the context of Async is an asynchronous function with