Run Prettier JS (#6795)

This commit is contained in:
Diamond Lewis
2020-07-13 13:06:52 -05:00
committed by GitHub
parent ebb0727793
commit e6a6354b29
47 changed files with 313 additions and 329 deletions

View File

@@ -10,7 +10,7 @@ function useRedis(config: any): boolean {
return typeof redisURL !== 'undefined' && redisURL !== '';
}
ParsePubSub.createPublisher = function(config: any): any {
ParsePubSub.createPublisher = function (config: any): any {
if (useRedis(config)) {
return RedisPubSub.createPublisher(config);
} else {
@@ -26,7 +26,7 @@ ParsePubSub.createPublisher = function(config: any): any {
}
};
ParsePubSub.createSubscriber = function(config: any): void {
ParsePubSub.createSubscriber = function (config: any): void {
if (useRedis(config)) {
return RedisPubSub.createSubscriber(config);
} else {