Skip to content

Instantly share code, notes, and snippets.

@Keraito
Created March 31, 2022 20:28
Show Gist options
  • Save Keraito/50865594108604a7895fed8430c30cbd to your computer and use it in GitHub Desktop.
Save Keraito/50865594108604a7895fed8430c30cbd to your computer and use it in GitHub Desktop.
import is from './objectIs';
function shallowEqual(objA: mixed, objB: mixed): boolean {
if (is(objA, objB)) {
return true;
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment