UNPKG

wifli

Version:

Simple API for WiFli programmable helicopters. Nodecopter for the common (read: cheap) hacker.

15 lines (10 loc) 247 B
'use strict'; function MockConnection() { } MockConnection.prototype.write = function (buffer) { console.dir(buffer); }; MockConnection.prototype.end = function () { console.log('connection shut down'); }; module.exports = MockConnection;