Skip to content

Instantly share code, notes, and snippets.

@bdunn313
Created January 30, 2018 00:53
Show Gist options
  • Save bdunn313/90a68f6ce7faed1dac39a94be97ae188 to your computer and use it in GitHub Desktop.
Save bdunn313/90a68f6ce7faed1dac39a94be97ae188 to your computer and use it in GitHub Desktop.
// List
const prefs = new Map();
// Toggle
const togglePref = (prefName) => {
prefs.set(prefName, !prefs.get(prefName));
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment