Skip to content

Commit

Permalink
remove useless file from output
Browse files Browse the repository at this point in the history
  • Loading branch information
Araxeus committed May 18, 2024
1 parent 76c900b commit 1ecb05c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test.ts → test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ switch (args[0]) {
info('Usage: test search [query]');
}

function maybe(name: string, value?: string | null) {
function maybe(name, value) {
return value ? { [name]: value } : {};
}

async function search(query: string) {
async function search(query) {
const res = await octokit.search.repos({
q: query,
per_page: 1,
Expand Down

0 comments on commit 1ecb05c

Please sign in to comment.