PATH:
opt
/
alt
/
alt-nodejs24
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
diff
/
libesm
/
diff
import Diff from './base.js'; class ArrayDiff extends Diff { tokenize(value) { return value.slice(); } join(value) { return value; } removeEmpty(value) { return value; } } export const arrayDiff = new ArrayDiff(); export function diffArrays(oldArr, newArr, options) { return arrayDiff.diff(oldArr, newArr, options); }
[+]
..
[-] sentence.js
[open]
[-] json.js
[open]
[-] character.js
[open]
[-] line.js
[open]
[-] base.js
[open]
[-] css.js
[open]
[-] array.js
[open]
[-] word.js
[open]