Skip to content

Commit f96350e

Browse files
committed
bugfix
1 parent 2b62d3c commit f96350e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

deno.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,5 @@
33
"checkJs": true
44
},
55
"imports": {
6-
"fs": "https://deno.land/[email protected]/node/fs.ts",
7-
"yaml": "https://deno.land/[email protected]/encoding/yaml.ts",
8-
"command": "https://deno.land/x/[email protected]/commander/index.ts"
96
}
107
}

src/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import {readFileSync} from 'fs'
2-
import {parse} from 'yaml'
1+
import {readFileSync} from 'https://deno.land/[email protected]/node/fs.ts'
2+
import {parse} from 'https://deno.land/[email protected]/encoding/yaml.ts'
33

44
function randomIban(countryCode, technicalOrgNum) {
55
return countryCode + randomInteger(20, 90) + technicalOrgNum + randomInteger(1000000, 9999999)

0 commit comments

Comments
 (0)