UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

20 lines (15 loc) 369 B
"use strict"; /* https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.is */ var NumberIsNaN = function (value) { return value !== value; }; module.exports = function is(a, b) { if (a === 0 && b === 0) { return 1 / a === 1 / b; } else if (a === b) { return true; } else if (NumberIsNaN(a) && NumberIsNaN(b)) { return true; } return false; };