dotfiles/vscode/.vscode/extensions/matangover.mypy-0.3.1/node_modules/es-abstract/2015/StrictEqualityComparison.js
Errol Sancaktar 5f8db31398 alacritty
2024-07-15 17:06:13 -06:00

18 lines
366 B
JavaScript
Generated

'use strict';
var Type = require('./Type');
// https://ecma-international.org/ecma-262/5.1/#sec-11.9.6
module.exports = function StrictEqualityComparison(x, y) {
var xType = Type(x);
var yType = Type(y);
if (xType !== yType) {
return false;
}
if (xType === 'Undefined' || xType === 'Null') {
return true;
}
return x === y; // shortcut for steps 4-7
};