operand checked twice in or statement.
francisschmaltz opened this issue · 2 comments
francisschmaltz commented
On line 1011 of src/typescript-service.ts
if (!params.query.package || !params.query.package) {
return [symbol]
}should be
if (!params.query.package) {
return [symbol]
}felixfbecker commented
Wanna do a PR?
nicksnyder commented
Yeah, just edit the code @francisschmaltz :)