UNPKG

@flowfuse/device-agent

Version:

An Edge Agent for running Node-RED instances deployed from the FlowFuse Platform

12 lines (9 loc) 242 B
/** ANSI escape code to hide the cursor. */ const ANSI_HIDE_CURSOR = '\x1B[?25l' /** Possible prompt statuses. */ const Status = { Idle: 'idle', Done: 'done', Canceled: 'canceled' } module.exports = { ANSI_HIDE_CURSOR, Status }