UNPKG

root-api

Version:

Organize your API with flexible customization in a breeze. No dependencies.

5 lines 166 B
module.exports = async function(hello, world) { return await new Promise(function(ok, fail) { setTimeout(() => ok(hello + " " + world + " x " + 1000), 100); }); }