File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/form-data/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 /.

populate.js232 B · 11 lines
'use strict'; // populates missing valuesmodule.exports = function (dst, src) {  Object.keys(src).forEach(function (prop) {    dst[prop] = dst[prop] || src[prop]; // eslint-disable-line no-param-reassign  });   return dst;};