main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
408 bytes
|
Rev | Line | |
---|
[d565449] | 1 | '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 | var getGlobal = function () { return polyfill; };
|
---|
| 12 |
|
---|
| 13 | defineProperties(getGlobal, {
|
---|
| 14 | getPolyfill: getPolyfill,
|
---|
| 15 | implementation: implementation,
|
---|
| 16 | shim: shim
|
---|
| 17 | });
|
---|
| 18 |
|
---|
| 19 | module.exports = getGlobal;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.