UNPKG

sim800

Version:

A modern and opiniated module for SIM800 GSM modems ( SIM800 / SIM800L ).

10 lines 422 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.attachSerialListeners = void 0; const attachSerialListeners = (serial, parser, handlers) => { serial.addListener('error', handlers.error); serial.on('open', handlers.open); parser.addListener('data', handlers.data); }; exports.attachSerialListeners = attachSerialListeners; //# sourceMappingURL=attach-serial-listeners.js.map