ohctechv3/.svn/pristine/b6/b64d3d60c1448928f4eed4e50a3d094e170f7939.svn-base
2024-10-28 15:03:36 +05:30

19 lines
374 B
Plaintext

'use strict';
var define = require('define-properties');
var callBind = require('call-bind');
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');
var bound = callBind(implementation);
define(bound, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = bound;