Skip to content

Instantly share code, notes, and snippets.

@zGrav
Created March 26, 2020 00:26
Show Gist options
  • Save zGrav/0287c355df7fc90564c3f7f9bef14fd6 to your computer and use it in GitHub Desktop.
Save zGrav/0287c355df7fc90564c3f7f9bef14fd6 to your computer and use it in GitHub Desktop.
const keyMirror = (actions: string[]) => {
const mirror: Partial<any> = {};
actions.forEach(action => {
mirror[action] = action;
});
return mirror;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment