rafa
Version:
Rafa.js is a Javascript framework for building concurrent applications.
10 lines (8 loc) • 311 B
JavaScript
if (typeof define === "function" && define.amd)
define(function() { return Rafa; });
else if (typeof exports !== "undefined") {
if (typeof module !== "undefined" && module.exports)
exports = module.exports = Rafa;
exports.Rafa = Rafa;
} else if (typeof window === "object") window.Rafa = Rafa;
})();