Skip to content
This repository has been archived by the owner on Mar 5, 2021. It is now read-only.

Commit

Permalink
Constify
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoTheThird committed Sep 26, 2019
1 parent 3f91ec1 commit 96d47d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ const systemImage = new systemImageClient();

systemImage.getDeviceChannels("bacon").then((channels) => console.log(channels));

var progress = (progress, speed) => {
const progress = (progress, speed) => {
console.log("progress:", progress*100, "%");
console.log("speed:", speed, "MB/s");
}

var next = (downloadedFiles, totalFiles) => {
const next = (downloadedFiles, totalFiles) => {
console.log("file", downloadedFiles, "/", totalFiles);
}

Expand Down

0 comments on commit 96d47d0

Please sign in to comment.