Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

collection.js 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var global = require('../internals/global');
  4. var isForced = require('../internals/is-forced');
  5. var redefine = require('../internals/redefine');
  6. var InternalMetadataModule = require('../internals/internal-metadata');
  7. var iterate = require('../internals/iterate');
  8. var anInstance = require('../internals/an-instance');
  9. var isObject = require('../internals/is-object');
  10. var fails = require('../internals/fails');
  11. var checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');
  12. var setToStringTag = require('../internals/set-to-string-tag');
  13. var inheritIfRequired = require('../internals/inherit-if-required');
  14. module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
  15. var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
  16. var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;
  17. var ADDER = IS_MAP ? 'set' : 'add';
  18. var NativeConstructor = global[CONSTRUCTOR_NAME];
  19. var NativePrototype = NativeConstructor && NativeConstructor.prototype;
  20. var Constructor = NativeConstructor;
  21. var exported = {};
  22. var fixMethod = function (KEY) {
  23. var nativeMethod = NativePrototype[KEY];
  24. redefine(NativePrototype, KEY,
  25. KEY == 'add' ? function add(value) {
  26. nativeMethod.call(this, value === 0 ? 0 : value);
  27. return this;
  28. } : KEY == 'delete' ? function (key) {
  29. return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);
  30. } : KEY == 'get' ? function get(key) {
  31. return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);
  32. } : KEY == 'has' ? function has(key) {
  33. return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);
  34. } : function set(key, value) {
  35. nativeMethod.call(this, key === 0 ? 0 : key, value);
  36. return this;
  37. }
  38. );
  39. };
  40. var REPLACE = isForced(
  41. CONSTRUCTOR_NAME,
  42. typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {
  43. new NativeConstructor().entries().next();
  44. }))
  45. );
  46. if (REPLACE) {
  47. // create collection constructor
  48. Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);
  49. InternalMetadataModule.REQUIRED = true;
  50. } else if (isForced(CONSTRUCTOR_NAME, true)) {
  51. var instance = new Constructor();
  52. // early implementations not supports chaining
  53. var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;
  54. // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false
  55. var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });
  56. // most early implementations doesn't supports iterables, most modern - not close it correctly
  57. // eslint-disable-next-line no-new -- required for testing
  58. var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });
  59. // for early implementations -0 and +0 not the same
  60. var BUGGY_ZERO = !IS_WEAK && fails(function () {
  61. // V8 ~ Chromium 42- fails only with 5+ elements
  62. var $instance = new NativeConstructor();
  63. var index = 5;
  64. while (index--) $instance[ADDER](index, index);
  65. return !$instance.has(-0);
  66. });
  67. if (!ACCEPT_ITERABLES) {
  68. Constructor = wrapper(function (dummy, iterable) {
  69. anInstance(dummy, Constructor, CONSTRUCTOR_NAME);
  70. var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);
  71. if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
  72. return that;
  73. });
  74. Constructor.prototype = NativePrototype;
  75. NativePrototype.constructor = Constructor;
  76. }
  77. if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {
  78. fixMethod('delete');
  79. fixMethod('has');
  80. IS_MAP && fixMethod('get');
  81. }
  82. if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);
  83. // weak collections should not contains .clear method
  84. if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;
  85. }
  86. exported[CONSTRUCTOR_NAME] = Constructor;
  87. $({ global: true, forced: Constructor != NativeConstructor }, exported);
  88. setToStringTag(Constructor, CONSTRUCTOR_NAME);
  89. if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);
  90. return Constructor;
  91. };