blob: eb3a54168b6f746a01ce28558efd4f279e89090b [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001;(function (root, factory) {
2 if (typeof exports === "object") {
3 // CommonJS
4 module.exports = exports = factory();
5 }
6 else if (typeof define === "function" && define.amd) {
7 // AMD
8 define([], factory);
9 }
10 else {
11 // Global (browser)
12 root.CryptoJS = factory();
13 }
14}(this, function () {
15
16 /*globals window, global, require*/
17
18 /**
19 * CryptoJS core components.
20 */
21 var CryptoJS = {};
22
23 return CryptoJS;
24
25}));