web 3d图形渲染器
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.

22 lines
532 B

  1. 'use strict';
  2. var defineProperties = require('define-properties');
  3. var callBind = require('call-bind');
  4. var implementation = require('./implementation');
  5. var getPolyfill = require('./polyfill');
  6. var shim = require('./shim');
  7. var polyfill = callBind.apply(getPolyfill());
  8. // eslint-disable-next-line no-unused-vars
  9. var bound = function assign(target, source1) {
  10. return polyfill(Object, arguments);
  11. };
  12. defineProperties(bound, {
  13. getPolyfill: getPolyfill,
  14. implementation: implementation,
  15. shim: shim
  16. });
  17. module.exports = bound;