Skip to content

Instantly share code, notes, and snippets.

@zaydek-old
Created August 22, 2019 05:51
Show Gist options
  • Save zaydek-old/5e823582076a85e27ec49282aa31a5dd to your computer and use it in GitHub Desktop.
Save zaydek-old/5e823582076a85e27ec49282aa31a5dd to your computer and use it in GitHub Desktop.
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