Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Mar 30, 2021
1 parent a3553aa commit 1532d9e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,16 @@
}
},
"devDependencies": {
"@types/node": "14.14.3",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"c8": "^7.3.5",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"c8": "^7.6.0",
"hundreds": "0.0.9",
"ipjs": "^3.4.4",
"mocha": "^8.2.0",
"ipjs": "^5.0.0",
"mocha": "^8.3.2",
"polendina": "^1.1.0",
"standard": "^15.0.0",
"typescript": "^4.0.3"
"standard": "^16.0.3",
"typescript": "^4.2.3"
},
"standard": {
"ignore": [
Expand All @@ -102,9 +102,8 @@
]
},
"dependencies": {
"buffer": "^5.6.1",
"cids": "^1.0.2",
"lodash.transform": "^4.6.0"
"buffer": "^6.0.3",
"cids": "^1.1.6"
},
"directories": {
"test": "test"
Expand Down
2 changes: 1 addition & 1 deletion src/bases/base32.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { withAlphabet } from './base.js'
* @param {input} alphabet
*/
function decode (input, alphabet) {
input = input.replace(new RegExp('=', 'g'), '')
input = input.replace(/=/g, '')
const length = input.length

let bits = 0
Expand Down

0 comments on commit 1532d9e

Please sign in to comment.