Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
390 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var define = require('define-properties');
|
---|
| 4 | var callBind = require('call-bind');
|
---|
| 5 |
|
---|
| 6 | var implementation = require('./implementation');
|
---|
| 7 | var getPolyfill = require('./polyfill');
|
---|
| 8 | var shim = require('./shim');
|
---|
| 9 |
|
---|
| 10 | var polyfill = callBind(getPolyfill(), Object);
|
---|
| 11 |
|
---|
| 12 | define(polyfill, {
|
---|
| 13 | getPolyfill: getPolyfill,
|
---|
| 14 | implementation: implementation,
|
---|
| 15 | shim: shim
|
---|
| 16 | });
|
---|
| 17 |
|
---|
| 18 | module.exports = polyfill;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.