Skip to content

Commit

Permalink
Merge pull request #190 from libeo-tech/chore-update-to-node-16
Browse files Browse the repository at this point in the history
chore(*): update test to node 16
  • Loading branch information
pchab committed Feb 18, 2022
2 parents bf679e9 + 9769bca commit 69def05
Show file tree
Hide file tree
Showing 4 changed files with 20,982 additions and 4,923 deletions.
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Drug, Pharmacy } from "./pharmacy";

import fs from "fs";

const drugs = [
Expand All @@ -17,7 +16,7 @@ for (let elapsedDays = 0; elapsedDays < 30; elapsedDays++) {
}

/* eslint-disable no-console */
fs.writeFile("output.txt", log, err => {
fs.writeFile("output.txt", log.toString(), err => {
if (err) {
console.log("error");
} else {
Expand Down
Loading

0 comments on commit 69def05

Please sign in to comment.