First upload version 0.0.1
This commit is contained in:
15
node_modules/node-llama-cpp/dist/bindings/utils/asyncEvery.js
generated
vendored
Normal file
15
node_modules/node-llama-cpp/dist/bindings/utils/asyncEvery.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { getConsoleLogPrefix } from "../../utils/getConsoleLogPrefix.js";
|
||||
/**
|
||||
* Returns a promise that resolves to true if every promise in the array resolves to true, otherwise false.
|
||||
* Note that this function will not throw on error and instead will log the error to the console.
|
||||
*/
|
||||
export async function asyncEvery(promises) {
|
||||
try {
|
||||
return (await Promise.all(promises)).every(Boolean);
|
||||
}
|
||||
catch (err) {
|
||||
console.error(getConsoleLogPrefix(false, false), err);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=asyncEvery.js.map
|
||||
Reference in New Issue
Block a user