Octal!
Octal!
DDeno
Created by Octal! on 7/29/2023 in #help
Object to tuple of tuple of keys and type?
Example:
type SomeType = {
owo: string
uwu: number
}
type SomeType = {
owo: string
uwu: number
}
Into
type SomeType = [
["owo", string],
["uwu", number]
]
type SomeType = [
["owo", string],
["uwu", number]
]
7 replies
DDeno
Created by Octal! on 11/16/2022 in #help
deno_core run files concurrently
Is is possible to run multiple files concurrently using the deno_core crate?
3 replies
DDeno
Created by Octal! on 11/10/2022 in #help
Synchronous read single line from Deno.stdin
Hi, how would I go about reading a single line from Deno.stdin synchronously?
4 replies