You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 316B

123456789101112131415
  1. 'use strict';
  2. var define = require('define-properties');
  3. var implementation = require('./implementation');
  4. var getPolyfill = require('./polyfill');
  5. var shim = require('./shim');
  6. define(implementation, {
  7. getPolyfill: getPolyfill,
  8. implementation: implementation,
  9. shim: shim
  10. });
  11. module.exports = implementation;