I hereby claim:
- I am nickserv on github.
- I am nicolasmccurdy (https://keybase.io/nicolasmccurdy) on keybase.
- I have a public key ASCMpqpV1JY9do3WmSZ_1osCTlXjOQmwSe0cjbHecpCIIwo
To claim this, I am signing this object:
| { | |
| "experimentalTernaries": true, | |
| "experimentalOperatorPosition": "start", | |
| "useTabs": true, | |
| "semi": false, | |
| "trailingComma": "none" | |
| } |
I hereby claim:
To claim this, I am signing this object:
| # JavaScript | |
| **/bun.lock | |
| **/package-lock.json | |
| **/pnpm-lock.yaml | |
| **/yarn.lock | |
| # Ruby | |
| **/Gemfile.lock |
| export default function App() { | |
| return ( | |
| <> | |
| <script> | |
| { | |
| module { | |
| import analytics from "..."; // Import an analytics library, possibly from a CDN | |
| // Configure analytics library | |
| } | |
| } |
| "use server"; | |
| export async function hello() { | |
| return <h1>Hello, world!</h1>; | |
| } |
| async function Row({ chunk }) { | |
| const { next, value, done } = await chunk | |
| if (done) return null | |
| return ( | |
| <> | |
| {value} | |
| <Row chunk={next} /> | |
| </> | |
| ) | |
| } |
To consistently use Baseline browsers (Chrome, Edge, Firefox, Safari) with your web toolchain, add these to your Browserslist:
"browserslist": [
"last 2 chrome versions",
"last 2 edge versions",
"last 2 firefox versions",
"last 2 safari major versions"| - ts-node --esm [path] | |
| + node --loader ts-node/esm [path] |
| interface Parser<T> { | |
| parse(text: string): T | |
| stringify(value: T): string | |
| } |