Created
May 11, 2023 16:10
-
-
Save zacjones93/e1cd498c9f8b4beac85cda36ace820ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: find instructor by email | |
// Author: Zac Jones | |
import "@johnlindquist/kit" | |
let baseUrl = "https://app.egghead.io/admin/blazer/queries/444-find-instructor-by-email" | |
let email = await arg("enter an email: ") | |
let safeEmail = encodeURI(email) | |
open(`${baseUrl}?email=${safeEmail}`) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment