1
0
mirror of synced 2025-12-13 10:18:40 +08:00
Files
eruda/util.js
2016-03-10 00:25:15 +08:00

18 lines
391 B
JavaScript

// Built by eustia.
(function(root, factory)
{
if (typeof define === 'function' && define.amd)
{
define([], factory);
} else if (typeof module === 'object' && module.exports)
{
module.exports = factory();
} else { root._ = factory() }
}(this, function ()
{
var _ = {};
if (typeof window === 'object' && window._) _ = window._;
return _;
}));