UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

14 lines (9 loc) 289 B
"use strict"; var setupThrobber = require("../throbber"); var throbber = setupThrobber(function (str) { process.stdout.write(str); }, 200); process.stdout.write("Throbbing for 3 seconds here -> "); throbber.start(); setTimeout(function () { console.log(); throbber.stop(); }, 3000);