UNPKG

@awaitbox/meteor-startup

Version:

@awaitbox/meteor-startup ========================

9 lines (8 loc) 224 B
/** * Await for Meteor to be ready (on the client or server). */ module.exports = function meteorStartup( _passThrough ) { return new Promise(resolve => { Meteor.startup(() => resolve( _passThrough )) }) }