UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

13 lines (9 loc) 209 B
'use strict' var queue = require('./')(worker, 1) queue.push(42, function (err, result) { if (err) { throw err } console.log('the result is', result) }) function worker (arg, cb) { cb(null, 42 * 2) }