ix
Version:
The Interactive Extensions for JavaScript
19 lines (17 loc) • 480 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @ignore
*/
function comparer(x, y) {
return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y));
}
exports.comparer = comparer;
/**
* @ignore
*/
async function comparerAsync(x, y) {
return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y));
}
exports.comparerAsync = comparerAsync;
//# sourceMappingURL=comparer.js.map