Closed ZinoKader closed 4 years ago
"library" in L154 was declared as const, and possibly reassigned at L164 which resulted in a TypeError
This PR simply declares library with a let instead of a const.
library
let
const
@ZinoKader Good catch, and thanks for that fix!
No problemo! Thanks for the handy library! Are you going to put out a release with this fix?
@ZinoKader Yes, v0.9.2 was just published!
"library" in L154 was declared as const, and possibly reassigned at L164 which resulted in a TypeError
This PR simply declares
library
with alet
instead of aconst
.