Created
August 15, 2017 14:47
-
-
Save neurosnap/2df4aa7b3c9c8c0e85884a3edad7e507 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const handler = { | |
get(target, name) { | |
return name; | |
}, | |
}; | |
const actionTypeCreator = new Proxy({}, handler); | |
const { ADD_SOMETHING, REMOVE_SOMETHING } = actionTypeCreator; | |
console.log(ADD_SOMETHING); // 'ADD_SOMETHING' | |
console.log(REMOVE_SOMETHING); // 'REMOVE_SOMETHING' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment