mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 15:56:16 -04:00
20 lines
352 B
JavaScript
20 lines
352 B
JavaScript
import Diff from "../../operations/Diff.js";
|
|
|
|
|
|
/**
|
|
* Diff module.
|
|
*
|
|
* Libraries:
|
|
* - JsDIff
|
|
*
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
let OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|
|
|
OpModules.Diff = {
|
|
"Diff": Diff.runDiff,
|
|
};
|
|
|
|
export default OpModules;
|