UNPKG

fast-array-diff

Version:

Implementation of paper 'An O(ND) Difference Algorithm and Its Variations' on array

7 lines (6 loc) 197 B
import bestSubSequence from './diff/lcs'; import same from './diff/same'; export { bestSubSequence, same }; export * from './diff/diff'; export * from './diff/patch'; export * from './diff/apply';