owncloud-sdk
owncloud-sdk copied to clipboard
Get rid of `self` references
Get rid of const self = this statements where possible.
Most of the time it should be
a) not necessary because it's used in lambda functions or
b) possible to use .bind(this) on a function.