UNPKG

apn

Version:

An interface to the Apple Push Notification service for Node.js

14 lines (9 loc) 192 B
"use strict"; module.exports = function() { function Client() { } Client.prototype.write = function mockWrite(notification, device) { return { device }; }; return Client; };