mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 08:58:30 +01:00
21 lines
317 B
JavaScript
21 lines
317 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 = self.OpModules || {};
|
||
|
|
||
|
OpModules.Diff = {
|
||
|
"Diff": Diff.runDiff,
|
||
|
};
|
||
|
|
||
|
export default OpModules;
|