mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-26 19:54:46 +01:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
|
'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));
|
||
|
};
|