Source: functions/comparison.js

  1. /**
  2. * A function for comparing two values and determine whether they're considered
  3. * equal.
  4. *
  5. * @callback equalityCallback
  6. * @param {Any} a -
  7. * The first value to test.
  8. * @param {Any} b -
  9. * The second value to test.
  10. * @return {Boolean} -
  11. * Whether or not the two values are considered equivalent.
  12. * @see Rekord.equals
  13. * @see Rekord.equalsStrict
  14. * @see Rekord.equalsCompare
  15. */
  16. /**
  17. * A function for comparing two values to determine if one is greater or lesser
  18. * than the other or if they're equal.
  19. *
  20. * ```javascript
  21. * comparisonCallback( a, b ) < 0 // a < b
  22. * comparisonCallback( a, b ) > 0 // a > b
  23. * comparisonCallback( a, b ) == 0 // a == b
  24. * ```
  25. *
  26. * @callback comparisonCallback
  27. * @param {Any} a -
  28. * The first value to test.
  29. * @param {Any} b -
  30. * The second value to test.
  31. * @return {Number} -
  32. * 0 if the two values are considered equal, a negative value if `a` is
  33. * considered less than `b`, and a positive value if `a` is considered
  34. * greater than `b`.
  35. * @see Rekord.compare
  36. * @see Rekord.compareNumbers
  37. */
  38. function equalsStrict(a, b)
  39. {
  40. return a === b;
  41. }
  42. function equalsCompare(a, b)
  43. {
  44. return compare( a, b ) === 0;
  45. }
  46. function equals(a, b)
  47. {
  48. if (a === b)
  49. {
  50. return true;
  51. }
  52. if (a === null || b === null)
  53. {
  54. return false;
  55. }
  56. if (a !== a && b !== b)
  57. {
  58. return true; // NaN === NaN
  59. }
  60. var at = typeof a;
  61. var bt = typeof b;
  62. var ar = isRegExp(a);
  63. var br = isRegExp(b);
  64. if (at === 'string' && br)
  65. {
  66. return b.test(a);
  67. }
  68. if (bt === 'string' && ar)
  69. {
  70. return a.test(b);
  71. }
  72. if (at !== bt)
  73. {
  74. return false;
  75. }
  76. var aa = isArray(a);
  77. var ba = isArray(b);
  78. if (aa !== ba)
  79. {
  80. return false;
  81. }
  82. if (aa)
  83. {
  84. if (a.length !== b.length)
  85. {
  86. return false;
  87. }
  88. for (var i = 0; i < a.length; i++)
  89. {
  90. if (!equals(a[i], b[i]))
  91. {
  92. return false;
  93. }
  94. }
  95. return true;
  96. }
  97. if (isDate(a))
  98. {
  99. return isDate(b) && equals( a.getTime(), b.getTime() );
  100. }
  101. if (ar)
  102. {
  103. return br && a.toString() === b.toString();
  104. }
  105. if (at === 'object')
  106. {
  107. for (var ap in a)
  108. {
  109. if (ap.charAt(0) !== '$' && !isFunction(a[ap]))
  110. {
  111. if (!(ap in b) || !equals(a[ap], b[ap]))
  112. {
  113. return false;
  114. }
  115. }
  116. }
  117. for (var bp in b)
  118. {
  119. if (bp.charAt(0) !== '$' && !isFunction(b[bp]))
  120. {
  121. if (!(bp in a))
  122. {
  123. return false;
  124. }
  125. }
  126. }
  127. return true;
  128. }
  129. return false;
  130. }
  131. function compareNumbers(a, b)
  132. {
  133. return (a === b ? 0 : (a < b ? -1 : 1));
  134. }
  135. function compare(a, b, nullsFirst)
  136. {
  137. if (a == b) // jshint ignore:line
  138. {
  139. return 0;
  140. }
  141. var av = isValue( a );
  142. var bv = isValue( b );
  143. if (av !== bv)
  144. {
  145. return (av && !nullsFirst) || (bv && nullsFirst) ? -1 : 1;
  146. }
  147. if (isDate(a))
  148. {
  149. a = a.getTime();
  150. }
  151. if (isDate(b))
  152. {
  153. b = b.getTime();
  154. }
  155. if (isNumber(a) && isNumber(b))
  156. {
  157. return compareNumbers(a, b);
  158. }
  159. if (isArray(a) && isArray(b))
  160. {
  161. return compareNumbers(a.length, b.length);
  162. }
  163. if (isBoolean(a) && isBoolean(b))
  164. {
  165. return (a ? -1 : 1);
  166. }
  167. return (a + '').localeCompare(b + '');
  168. }