Sha256: bbabc9109c86de1986001aa5f6098a829694e4076105f677d9f989a4adcf9dbf
Contents?: true
Size: 250 Bytes
Versions: 29
Compression:
Stored size: 250 Bytes
Contents
// Implementation credits go to: // http://wiki.ecmascript.org/doku.php?id=harmony:egal 'use strict'; module.exports = function (x, y) { return (x === y) ? ((x !== 0) || ((1 / x) === (1 / y))) : ((x !== x) && (y !== y)); //jslint: ignore };
Version data entries
29 entries across 19 versions & 7 rubygems