deepsweet/microjungle

View on GitHub
src/_header.js

Summary

Maintainability
A
0 mins
Test Coverage
// https://github.com/umdjs/umd/blob/master/returnExports.js
(function(root, factory) {
    'use strict';

    /* istanbul ignore next */
    // AMD
    if (typeof define === 'function' && define.amd) {
        define([], factory);
    // CommonJS
    } else if (typeof exports === 'object') {
        module.exports = factory();
    // globals
    } else {
        root.microjungle = factory();
    }
}(this, function() {