Skip to content

Instantly share code, notes, and snippets.

@bnayae
Created January 12, 2021 17:44
Show Gist options
  • Save bnayae/060025410e0b7b633871dba9e6168f71 to your computer and use it in GitHub Desktop.
Save bnayae/060025410e0b7b633871dba9e6168f71 to your computer and use it in GitHub Desktop.
import { DefaultValue } from 'recoil';
export const guardRecoilDefaultValue = (
candidate: any
): candidate is DefaultValue => {
if (candidate instanceof DefaultValue) return true;
return false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment