mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 08:58:30 +01:00
23 lines
430 B
JavaScript
23 lines
430 B
JavaScript
import URL_ from "../../operations/URL.js";
|
|
|
|
|
|
/**
|
|
* URL module.
|
|
*
|
|
* Libraries:
|
|
* - Utils.js
|
|
* - url
|
|
*
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
let OpModules = typeof self === "undefined" ? {} : self.OpModules || {};
|
|
|
|
OpModules.URL = {
|
|
"URL Encode": URL_.runTo,
|
|
"URL Decode": URL_.runFrom,
|
|
"Parse URI": URL_.runParse,
|
|
};
|
|
|
|
export default OpModules;
|