ttezel / twit

Twitter API Client for node (REST & Streaming API)
4.31k stars 568 forks source link

Multiple instances and delete/teardown #447

Open pthieu opened 6 years ago

pthieu commented 6 years ago

I understand if we use native node.js constructs, we can instantiate then tear down by doing the following:

const T1 = new Twit(...);
delete T1;

Is there anything that is happening under the hood that needs to be cleaned up?