You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 2, 2021. It is now read-only.
Declare var self = this at top of each method, as this will never get renamed
Can then remove a whole bunch of fn.bind(this) statements
Mangle all private/underscored properties and methods
To verify that underscored methods are never used outside of a class, use checkprivate
What about methods that are used by other parts of the system, but that are never meant to be consumed by outside developers? Could these also be mangled?
The text was updated successfully, but these errors were encountered:
var self = this
at top of each method, asthis
will never get renamedfn.bind(this)
statementsThe text was updated successfully, but these errors were encountered: