(_options)
| 257 | * @returns {Promise<void>} Promise that resolves when initialization completes |
| 258 | */ |
| 259 | let _loadFastLED = function (_options) { |
| 260 | // Stub to let the user/dev know that something went wrong. |
| 261 | // This function is replaced with an async implementation, so it must be async for interface compatibility |
| 262 | console.log('FastLED loader function was not set.'); |
| 263 | return Promise.resolve(); |
| 264 | }; |
| 265 | |
| 266 | /** |
| 267 | * Public FastLED loading function (delegates to private implementation) |
no test coverage detected