summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/object/eq.js
blob: 037937ea6e974993a933566d2dc3d4b7f6597105 (plain)
1
2
3
4
5
'use strict';

module.exports = function (x, y) {
	return ((x === y) || ((x !== x) && (y !== y))); //jslint: ignore
};