UNPKG

@webqit/util

Version:

Utility functions used accross multiple JS libraries.

13 lines (11 loc) 218 B
/** * Creats a promise instance with the adbantage * of being an awaitable function call. * * @param function handler * * @return Promise */ export default function(handler) { return new Promise(handler); };