Files
ola5doc/sys/node_modules/es5-ext/object/eq.js
T

6 lines
119 B
JavaScript

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