;(function (root, factory) { | |
if (typeof exports === "object") { | |
// CommonJS | |
module.exports = exports = factory(); | |
} | |
else if (typeof define === "function" && define.amd) { | |
// AMD | |
define([], factory); | |
} | |
else { | |
// Global (browser) | |
root.CryptoJS = factory(); | |
} | |
}(this, function () { | |
/*globals window, global, require*/ | |
/** | |
* CryptoJS core components. | |
*/ | |
var CryptoJS = {}; | |
return CryptoJS; | |
})); |