1. (function (root, factory) {
    2. if (typeof (define) === 'function' && define.amd) {
    3. // AMD
    4. define(factory);
    5. }
    6. else if (typeof (module) === 'object') {
    7. // CommonJS
    8. module.exports = factory();
    9. }
    10. else {
    11. // Script tag import i.e., IIFE
    12. root.utils = factory();
    13. root.u = factory();
    14. }
    15. }(this, function () {
    16. 'use strict';
    17. @import './utils/index.js'
    18. var utils = {};
    19. return utils;
    20. }));