Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created January 17, 2025 14:33
Show Gist options
  • Save dontpaniclabsgists/5adf85a73d7915e249e0a13ae1599c89 to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/5adf85a73d7915e249e0a13ae1599c89 to your computer and use it in GitHub Desktop.
private initialize_Promise_NoCheck = async() => {
this.startTime = new Date().getTime();
await Promise.all([
...Array.from({ length: 3 }, async () => {
var key = 'promiseKey_NoDataCheck ';
await this.loadWithPromiseLockNoDataCheck(key);
this.log(this.promiseDataMap);
})
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment