Created
August 22, 2019 05:51
-
-
Save zaydek-old/5e823582076a85e27ec49282aa31a5dd 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
function utility(value) { | |
// .. | |
return value | |
} | |
const methods = (state) => { | |
a() { | |
// .. | |
}, | |
b(value) { | |
value = utility(value) | |
// .. | |
this.a() | |
// .. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment