• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2
3var define = require('define-properties');
4
5var implementation = require('./implementation');
6var getPolyfill = require('./polyfill');
7var shim = require('./shim');
8
9define(implementation, {
10	getPolyfill: getPolyfill,
11	implementation: implementation,
12	shim: shim
13});
14
15module.exports = implementation;
16