Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
fix: removed space
Browse files Browse the repository at this point in the history
  • Loading branch information
JamilOmar committed Nov 26, 2019
1 parent 1711ee4 commit 9322c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/check-self-update/fetch-module-registry-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function fetchModuleRegistryInfo(name: string) {
const url = [REGISTRY_URL, name, 'latest'].join('/');

return new Promise((resolve, reject) => {
request({url, method: 'GET', json: true }, (error, response, body) => {
request({url, method: 'GET', json: true}, (error, response, body) => {
if (error) {
reject(error);
return;
Expand Down

0 comments on commit 9322c76

Please sign in to comment.