File Explorer

/proc/self/root/proc/1/task/1/cwd/node24/lib/node_modules/npm/node_modules/diff/libesm/diff

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

css.js275 B · 11 lines
import Diff from './base.js';class CssDiff extends Diff {    tokenize(value) {        return value.split(/([{}:;,]|\s+)/);    }}export const cssDiff = new CssDiff();export function diffCss(oldStr, newStr, options) {    return cssDiff.diff(oldStr, newStr, options);}