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
{ | |
"version": 0.6, | |
"generator": "Overpass API 0.7.62.8 e802775f", | |
"osm3s": { | |
"timestamp_osm_base": "2025-09-24T13:38:15Z", | |
"timestamp_areas_base": "2025-09-24T09:15:14Z", | |
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL." | |
}, | |
"elements": [ |
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
import '@johnlindquist/kit'; | |
import { Choice } from '@johnlindquist/kit'; | |
import emojiJson from 'emojilib' assert { type: 'json' }; | |
import unicodeEmojiJson from 'unicode-emoji-json' assert { type: 'json' }; | |
import Fuse from 'fuse.js'; | |
type UnicodeEmoji = { | |
name: string; | |
slug: string; | |
group: string; |
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: ULID utils | |
// Description: Generate and convert ULIDs | |
// Shortcode: u | |
import '@johnlindquist/kit'; | |
import { Choice } from '@johnlindquist/kit'; | |
import { decodeTime, isValid, ulid, ulidToUUID, uuidToULID } from 'ulidx'; | |
const ulidRegex = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/; |