* @param {Function|null} fn * @returns {Promise }
(fn = null)
| 292 | * @returns {Promise<void>} |
| 293 | */ |
| 294 | static async started(fn = null) { |
| 295 | if (fn) { |
| 296 | asyncHelperPromise = asyncHelperPromise.then(fn) |
| 297 | } |
| 298 | return asyncHelperPromise |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * Share data across worker threads |
no outgoing calls
no test coverage detected