File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/asynckit/lib

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

async.js599 B · 35 lines
var defer = require('./defer.js'); // APImodule.exports = async; /** * Runs provided callback asynchronously * even if callback itself is not * * @param   {function} callback - callback to invoke * @returns {function} - augmented callback */function async(callback){  var isAsync = false;   // check if async happened  defer(function() { isAsync = true; });   return function async_callback(err, result)  {    if (isAsync)    {      callback(err, result);    }    else    {      defer(function nextTick_callback()      {        callback(err, result);      });    }  };}