File Explorer

/proc/self/root/proc/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 /.

character.js228 B · 8 lines
import Diff from './base.js';class CharacterDiff extends Diff {}export const characterDiff = new CharacterDiff();export function diffChars(oldStr, newStr, options) {    return characterDiff.diff(oldStr, newStr, options);}