File Explorer

/proc/self/root/proc/thread-self/root/var/runtime/node_modules/@aws-sdk/node_modules/split2

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 /.

bench.js462 B · 28 lines
'use strict' var split = require('./')var bench = require('fastbench')var binarySplit = require('binary-split')var fs = require('fs') function benchSplit (cb) {  fs.createReadStream('package.json')    .pipe(split())    .on('end', cb)    .resume()} function benchBinarySplit (cb) {  fs.createReadStream('package.json')    .pipe(binarySplit())    .on('end', cb)    .resume()} var run = bench([  benchSplit,  benchBinarySplit], 10000) run(run)