Generic build of PDF.js library.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
384 B

'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);
}));