Projekt

Obecné

Profil

Stáhnout (355 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
3
var defineProperties = require('define-properties');
4
5
var implementation = require('./implementation');
6
var getPolyfill = require('./polyfill');
7
var shim = require('./shim');
8
9
var polyfill = getPolyfill();
10
11
defineProperties(polyfill, {
12
	getPolyfill: getPolyfill,
13
	implementation: implementation,
14
	shim: shim
15
});
16
17
module.exports = polyfill;