UNPKG

@hayspec/spec

Version:

Core logic for Hayspec framework.

13 lines (11 loc) 154 B
/** * */ export default function is (x, y) { if (x === y) { return x !== 0 || 1 / x === 1 / y; } else { return x !== x && y !== y; } }