is-shallow-equal.js 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. this["wp"] = this["wp"] || {}; this["wp"]["isShallowEqual"] =
  2. /******/ (function(modules) { // webpackBootstrap
  3. /******/ // The module cache
  4. /******/ var installedModules = {};
  5. /******/
  6. /******/ // The require function
  7. /******/ function __webpack_require__(moduleId) {
  8. /******/
  9. /******/ // Check if module is in cache
  10. /******/ if(installedModules[moduleId]) {
  11. /******/ return installedModules[moduleId].exports;
  12. /******/ }
  13. /******/ // Create a new module (and put it into the cache)
  14. /******/ var module = installedModules[moduleId] = {
  15. /******/ i: moduleId,
  16. /******/ l: false,
  17. /******/ exports: {}
  18. /******/ };
  19. /******/
  20. /******/ // Execute the module function
  21. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  22. /******/
  23. /******/ // Flag the module as loaded
  24. /******/ module.l = true;
  25. /******/
  26. /******/ // Return the exports of the module
  27. /******/ return module.exports;
  28. /******/ }
  29. /******/
  30. /******/
  31. /******/ // expose the modules object (__webpack_modules__)
  32. /******/ __webpack_require__.m = modules;
  33. /******/
  34. /******/ // expose the module cache
  35. /******/ __webpack_require__.c = installedModules;
  36. /******/
  37. /******/ // define getter function for harmony exports
  38. /******/ __webpack_require__.d = function(exports, name, getter) {
  39. /******/ if(!__webpack_require__.o(exports, name)) {
  40. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  41. /******/ }
  42. /******/ };
  43. /******/
  44. /******/ // define __esModule on exports
  45. /******/ __webpack_require__.r = function(exports) {
  46. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  47. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  48. /******/ }
  49. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  50. /******/ };
  51. /******/
  52. /******/ // create a fake namespace object
  53. /******/ // mode & 1: value is a module id, require it
  54. /******/ // mode & 2: merge all properties of value into the ns
  55. /******/ // mode & 4: return value when already ns object
  56. /******/ // mode & 8|1: behave like require
  57. /******/ __webpack_require__.t = function(value, mode) {
  58. /******/ if(mode & 1) value = __webpack_require__(value);
  59. /******/ if(mode & 8) return value;
  60. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  61. /******/ var ns = Object.create(null);
  62. /******/ __webpack_require__.r(ns);
  63. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  64. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  65. /******/ return ns;
  66. /******/ };
  67. /******/
  68. /******/ // getDefaultExport function for compatibility with non-harmony modules
  69. /******/ __webpack_require__.n = function(module) {
  70. /******/ var getter = module && module.__esModule ?
  71. /******/ function getDefault() { return module['default']; } :
  72. /******/ function getModuleExports() { return module; };
  73. /******/ __webpack_require__.d(getter, 'a', getter);
  74. /******/ return getter;
  75. /******/ };
  76. /******/
  77. /******/ // Object.prototype.hasOwnProperty.call
  78. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  79. /******/
  80. /******/ // __webpack_public_path__
  81. /******/ __webpack_require__.p = "";
  82. /******/
  83. /******/
  84. /******/ // Load entry module and return exports
  85. /******/ return __webpack_require__(__webpack_require__.s = 327);
  86. /******/ })
  87. /************************************************************************/
  88. /******/ ({
  89. /***/ 327:
  90. /***/ (function(module, exports, __webpack_require__) {
  91. "use strict";
  92. /**
  93. * Internal dependencies;
  94. */
  95. var isShallowEqualObjects = __webpack_require__( 328 );
  96. var isShallowEqualArrays = __webpack_require__( 329 );
  97. var isArray = Array.isArray;
  98. /**
  99. * Returns true if the two arrays or objects are shallow equal, or false
  100. * otherwise.
  101. *
  102. * @param {(Array|Object)} a First object or array to compare.
  103. * @param {(Array|Object)} b Second object or array to compare.
  104. *
  105. * @return {boolean} Whether the two values are shallow equal.
  106. */
  107. function isShallowEqual( a, b ) {
  108. if ( a && b ) {
  109. if ( a.constructor === Object && b.constructor === Object ) {
  110. return isShallowEqualObjects( a, b );
  111. } else if ( isArray( a ) && isArray( b ) ) {
  112. return isShallowEqualArrays( a, b );
  113. }
  114. }
  115. return a === b;
  116. }
  117. module.exports = isShallowEqual;
  118. module.exports.isShallowEqualObjects = isShallowEqualObjects;
  119. module.exports.isShallowEqualArrays = isShallowEqualArrays;
  120. /***/ }),
  121. /***/ 328:
  122. /***/ (function(module, exports, __webpack_require__) {
  123. "use strict";
  124. var keys = Object.keys;
  125. /**
  126. * Returns true if the two objects are shallow equal, or false otherwise.
  127. *
  128. * @param {Object} a First object to compare.
  129. * @param {Object} b Second object to compare.
  130. *
  131. * @return {boolean} Whether the two objects are shallow equal.
  132. */
  133. function isShallowEqualObjects( a, b ) {
  134. var aKeys, bKeys, i, key, aValue;
  135. if ( a === b ) {
  136. return true;
  137. }
  138. aKeys = keys( a );
  139. bKeys = keys( b );
  140. if ( aKeys.length !== bKeys.length ) {
  141. return false;
  142. }
  143. i = 0;
  144. while ( i < aKeys.length ) {
  145. key = aKeys[ i ];
  146. aValue = a[ key ];
  147. if (
  148. // In iterating only the keys of the first object after verifying
  149. // equal lengths, account for the case that an explicit `undefined`
  150. // value in the first is implicitly undefined in the second.
  151. //
  152. // Example: isShallowEqualObjects( { a: undefined }, { b: 5 } )
  153. ( aValue === undefined && ! b.hasOwnProperty( key ) ) ||
  154. aValue !== b[ key ]
  155. ) {
  156. return false;
  157. }
  158. i++;
  159. }
  160. return true;
  161. }
  162. module.exports = isShallowEqualObjects;
  163. /***/ }),
  164. /***/ 329:
  165. /***/ (function(module, exports, __webpack_require__) {
  166. "use strict";
  167. /**
  168. * Returns true if the two arrays are shallow equal, or false otherwise.
  169. *
  170. * @param {Array} a First array to compare.
  171. * @param {Array} b Second array to compare.
  172. *
  173. * @return {boolean} Whether the two arrays are shallow equal.
  174. */
  175. function isShallowEqualArrays( a, b ) {
  176. var i;
  177. if ( a === b ) {
  178. return true;
  179. }
  180. if ( a.length !== b.length ) {
  181. return false;
  182. }
  183. for ( i = 0; i < a.length; i++ ) {
  184. if ( a[ i ] !== b[ i ] ) {
  185. return false;
  186. }
  187. }
  188. return true;
  189. }
  190. module.exports = isShallowEqualArrays;
  191. /***/ })
  192. /******/ });