File Explorer

/proc/self/root/proc/1/task/1/root/node24/lib/node_modules/npm/node_modules/unique-slug/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 /.

index.js286 B · 12 lines
'use strict'var MurmurHash3 = require('imurmurhash') module.exports = function (uniq) {  if (uniq) {    var hash = new MurmurHash3(uniq)    return ('00000000' + hash.result().toString(16)).slice(-8)  } else {    return (Math.random().toString(16) + '0000000').slice(2, 10)  }}