|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
408 bytes
|
| Line | |
|---|
| 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.