Skip to content

Instantly share code, notes, and snippets.

@jbis9051
Created June 18, 2019 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbis9051/0127a6e39b9c6f41ecbe209352972056 to your computer and use it in GitHub Desktop.
Save jbis9051/0127a6e39b9c6f41ecbe209352972056 to your computer and use it in GitHub Desktop.
class Bot {
constructor(client){
this.client = client;
this.client.otherFunc();
}
someFunc(str){
}
}
class Client {
someFunc(){
this.bot
.someFunc("Hi")
}
otherFunc(){
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment