(options)
| 270 | * @returns {Promise<*>} Result from the FastLED loader |
| 271 | */ |
| 272 | export async function loadFastLED(options) { |
| 273 | // This will be overridden through the initialization. |
| 274 | return await _loadFastLED(options); |
| 275 | } |
| 276 | |
| 277 | /** Application start time epoch for timing calculations */ |
| 278 | const EPOCH = new Date().getTime(); |
no test coverage detected