Skip to content

Commit

Permalink
fix deploy build
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubobubobubobubo committed Dec 19, 2023
1 parent b01449e commit 6f886ec
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/API.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ export class UserAPI {
* function destined to the user should be placed here.
*/

private variables: { [key: string]: any } = {};
public codeExamples: { [key: string]: string } = {};
private counters: { [key: string]: any } = {};
private _drunk: DrunkWalk = new DrunkWalk(-100, 100, false);
Expand Down Expand Up @@ -1708,7 +1707,7 @@ export class UserAPI {
for (let value = start; value <= end; value += step) {
result.push(value);
}
} else if((end > start && step < 0) || (end < start && step > 0)) {
} else if ((end > start && step < 0) || (end < start && step > 0)) {
for (let value = start; value >= end; value -= step) {
result.push(parseFloat(value.toFixed(countPlaces(step))));
}
Expand Down

0 comments on commit 6f886ec

Please sign in to comment.