lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | ;(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 | })); |