/proc/thread-self/root/var/runtime/node_modules/@aws-sdk/node_modules/asynckit
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 /.
var serialOrdered = require('./serialOrdered.js'); // Public APImodule.exports = serial; /** * Runs iterator over provided array elements in series * * @param {array|object} list - array or object (named list) to iterate over * @param {function} iterator - iterator to run * @param {function} callback - invoked when all elements processed * @returns {function} - jobs terminator */function serial(list, iterator, callback){ return serialOrdered(list, iterator, null, callback);}