CyberChef/src/core/config/modules/Diff.js

21 lines
352 B
JavaScript
Raw Normal View History

2017-08-09 21:09:23 +02:00
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 || {};
2017-08-09 21:09:23 +02:00
OpModules.Diff = {
"Diff": Diff.runDiff,
};
export default OpModules;