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