astro-ghostcms/.pnpm-store/v3/files/c5/8b02d8542508d5006c80b039210...

10 lines
218 B
Plaintext

'use strict';
var $isNaN = require('../helpers/isNaN');
// https://262.ecma-international.org/6.0/#sec-samevaluezero
module.exports = function SameValueZero(x, y) {
return (x === y) || ($isNaN(x) && $isNaN(y));
};