This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> | |
<label for="foo">Input mask demo</label> | |
<input id="foo" type="text" pattern="\d{6}" /> |
This file contains 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
{ | |
"inputs": { | |
"../src/runtime/polyfills.ts": { "bytes": 134, "imports": [] }, | |
"https://esm.sh/stable/[email protected]/denonext/preact.mjs": { | |
"bytes": 10781, | |
"imports": [], | |
"format": "esm" | |
}, | |
"https://esm.sh/[email protected]": { | |
"bytes": 104, |
This file has been truncated, but you can view the full file.
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> | |
<h1>hello world</h1> | |
<p> |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> | |
<h1>hello</h1> |
This file contains 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
function use<T>(promiseOrContext: Promise<T> | Context<T>): T { | |
if ('__c' in promiseOrContext) { | |
return useContext(promiseOrContext) | |
} | |
return usePromise(promiseOrContext) | |
} | |
function usePromise<T>(promise: Promise<T>): T { | |
const resolving = useRef(false); |
This file contains 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
import { ServerResponse, type IncomingMessage } from "node:http"; | |
import { Http2ServerRequest, Http2ServerResponse } from "node:http2"; | |
import { isArrayBufferView } from "node:util/types"; | |
const INTERNAL_BODY = Symbol("internal_body"); | |
const GlobalResponse = Response; | |
globalThis.Response = class Response extends GlobalResponse { | |
[INTERNAL_BODY]: BodyInit | null | undefined = null; |
OlderNewer