Files
go-jdenticon/jdenticon-js/build/template-umd.js
Kevin McIntyre f84b511895 init
2025-06-18 01:00:00 -04:00

27 lines
601 B
JavaScript

/**
* Jdenticon #version#
* http://jdenticon.com
*
* Built: #date#
*
* #license#
*/
(function (umdGlobal, factory) {
var jdenticon = factory(umdGlobal);
// Node.js
if (typeof module !== "undefined" && "exports" in module) {
module["exports"] = jdenticon;
}
// RequireJS
else if (typeof define === "function" && define["amd"]) {
define([], function () { return jdenticon; });
}
// No module loader
else {
umdGlobal["jdenticon"] = jdenticon;
}
})(typeof self !== "undefined" ? self : this, function (umdGlobal) {
/*content*/
});