Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
EdamAme-x authored Nov 17, 2023
1 parent 681786f commit 98c9960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ NameList.forEach(name => {
**/
})

const firstUser: string[] | null = tako.getRow("members", "id", 0); // Search by row value from column in Table
const firstUser: string | null = tako.getSearchRow("members", "id", 0); // Search by row value from column in Table

console.log(firstUser ?? firstUser[0]); // Amex
console.log(firstUser ?? firstUser); // Amex

// Delete
tako.deleteColumn("members", "password");
Expand Down

0 comments on commit 98c9960

Please sign in to comment.