1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-29 07:37:57 +02:00
pdf.js/external/builder/fixtures_esprima/umd.js
2017-02-08 16:35:58 -06:00

14 lines
384 B
JavaScript

'use strict';
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define('test', ['exports', 'a/b', 'c/d'], factory);
} else if (typeof exports !== 'undefined') {
factory(exports, require('../a/b.js'), require('./d.js'));
} else {
factory((root.E = {}), root.aB, root.cD);
}
}(this, function (exports, aB, cD, opt) {
opt(aB + cD);
}));