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
interface listen { | |
<K extends keyof HTMLElementEventMap>( | |
target: HTMLElement, | |
type: K, | |
listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => void, | |
options?: boolean | AddEventListenerOptions, | |
): () => void; | |
( | |
target: EventTarget, | |
type: string, |
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
const INDENTATION_RE = /^\n( +)/; | |
const unindentTemplate = ( | |
template: TemplateStringsArray, | |
): { readonly raw: readonly string[] } => { | |
const indentation = INDENTATION_RE.exec(template.raw[0])?.[1]; | |
return indentation | |
? { raw: template.raw.map((a) => a.replaceAll(`\n${indentation}`, "\n")) } | |
: template; | |
}; |
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
export function objMap<T extends Record<string, any>, U>( | |
template: T, | |
eachKey: <P extends Extract<keyof T, string>>(name: P, value: T[P]) => U, | |
): { | |
[P in Extract<keyof T, string>]: U; | |
} { | |
// @ts-ignore | |
return Object.fromEntries( | |
Object.entries(template) | |
.filter(([name]) => typeof name === "string") |
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
pub mod prelude { | |
// some custom proc macros | |
pub use i_app_types_proc::shared; | |
// a "concepts" module that is purely for documenting through doc links | |
pub use crate::concepts; | |
// other common shared modules re-exported... | |
pub use crate::runtime; | |
pub use crate::testing; |
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
/** | |
* Add items with a throttled effect of applying the items. | |
* We might use this to collect items and then apply them in batches like for | |
* search results and timeline items. | |
*/ | |
export function collectAndFlush<T>( | |
then: (items: T[]) => void, | |
// 60 fps | |
throttleMs: number = 17, | |
): { |
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
/** | |
* As a proof of concept, | |
* JSON'infy the args, and parse them into a new Request Init, | |
* Make the fetch request with the new Request Init | |
* JSONify the response and use the jsonified response data | |
* to recreate the response object and return that | |
* | |
*/ | |
const fetchProxyProofOfConcept: typeof fetch = async (...args) => { |
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 type { Component, DevJSX, JSXNode, JSXOutput } from "@builder.io/qwik"; | |
import { useSignal, useVisibleTask$ } from "@builder.io/qwik"; | |
const QWIK_DATA_ATTR = "data-qwik-inspector"; | |
interface HackedProps { | |
"data-qwik-inspector"?: DevJSX; | |
"p:where"?: DevJSX; | |
} | |
function createLinkFromDevJSX(dev: DevJSX) { |
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
const warned = new Set<string>(); | |
export function warnOnce(message: string) { | |
if (!warned.has(message)) { | |
warned.add(message); | |
console.warn(message); | |
} | |
} |
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
/** Improve preview of union types in autocomplete. */ | |
export type Prettify<T> = { [K in keyof T]: T[K] } & {}; |
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
#!/usr/bin/env node | |
// Required parameters: | |
// @raycast.schemaVersion 1 | |
// @raycast.title Obfuscate | |
// @raycast.mode compact | |
// Optional parameters: | |
// @raycast.icon 🤖 | |
// @raycast.argument1 { "type": "text", "placeholder": "Original" } |
NewerOlder