Skip to content

Instantly share code, notes, and snippets.

@spcbfr
Created September 27, 2023 12:45
Show Gist options
  • Save spcbfr/019081aa2bb74bd2856d29f33b306007 to your computer and use it in GitHub Desktop.
Save spcbfr/019081aa2bb74bd2856d29f33b306007 to your computer and use it in GitHub Desktop.
scriptEquals
const strictEquals = (a,b) => (Object.is(a,b)
? !Object.is(a, NaN)
: (Object.is(a, 0) && Object.is(b, -0)) || (Object.is(a, -0) && Object.is(b, 0)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment