Hold the exports inside the variable.
Dit script moet niet direct worden geïnstalleerd - het is een bibliotheek voor andere scripts om op te nemen met de meta-richtlijn // @require https://update.greatest.deepsurf.us/scripts/5259/18732/Lib%20Export%20Holder.js
// ==UserScript==
// @name Lib Export Holder
// @author Jixun
// @description Hold the exports inside the variable.
// @version 1.0
// @copyright 2014+, Jixun
// ==/UserScript==
var exports = {};
// TODO: Logic of callbacks?
var require = function (name) {
return exports[name];
};