UNPKG

@fishan/myers-core-diff

Version:

A high-performance core diff engine based on Myers' algorithm, with plugin support for custom strategies (e.g., Patience, Preserve Structure).

8 lines (7 loc) 521 B
/** * @license * Copyright (c) 2025, Aleks Fishan * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */import{DiffOperation as t,MyersCoreDiff as f}from"./myers_core_diff.js";import{registerPatienceDiffStrategy as o}from"./strategy_patience.js";import{registerPreserveStructureStrategy as y}from"./strategy_preserve.js";export{t as DiffOperation,f as MyersCoreDiff,o as registerPatienceDiffStrategy,y as registerPreserveStructureStrategy};