forked from cujojs/poly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.js
More file actions
32 lines (29 loc) · 725 Bytes
/
all.js
File metadata and controls
32 lines (29 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/** @license MIT License (c) copyright 2013 original authors */
/**
* polyfill / shim plugin for AMD loaders
*
* @author Brian Cavalier
* @author John Hann
*/
(function (define) {
define(function (require) {
var object = require('./object');
var string = require('./string');
var date = require('./date');
require('./array');
require('./function');
require('./json');
require('./xhr');
require('./setImmediate');
require('./array-es6');
return {
failIfShimmed: object.failIfShimmed,
setWhitespaceChars: string.setWhitespaceChars,
setIsoCompatTest: date.setIsoCompatTest
};
});
}(
typeof define == 'function' && define.amd
? define
: function (factory) { module.exports = factory(require); }
));