Sha256: 1c143666fc7ef8cc8ec66202055eaa10cb0c8c9ca7602cbdafe44c0d17d9d7ab
Contents?: true
Size: 213 Bytes
Versions: 25
Compression:
Stored size: 213 Bytes
Contents
// `SameValueZero` abstract operation // https://tc39.github.io/ecma262/#sec-samevaluezero module.exports = function (x, y) { // eslint-disable-next-line no-self-compare return x === y || x != x && y != y; };
Version data entries
25 entries across 25 versions & 7 rubygems