This commit is contained in:
Kevin McIntyre
2025-06-18 01:00:00 -04:00
commit f84b511895
228 changed files with 42509 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/**
* 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*/
});