Vite + TypeScript PWA that mirrors the Android app's core features: - Pre-processed shelter data (build-time UTM33N→WGS84 conversion) - Leaflet map with shelter markers, user location, and offline tiles - Canvas compass arrow (ported from DirectionArrowView.kt) - IndexedDB shelter cache with 7-day staleness check - Service worker with CacheFirst tiles and precached app shell - i18n for en, nb, nn (ported from Android strings.xml) - iOS/Android compass handling with low-pass filter - Respects user map interaction (no auto-snap on pan/zoom) - Build revision cache-breaker for reliable SW updates Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
import { Bench } from 'tinybench'
|
|
import { fastUri } from '../index.js'
|
|
|
|
const {
|
|
equal: fastUriEqual,
|
|
parse: fastUriParse,
|
|
} = fastUri
|
|
|
|
const stringA = 'example://a/b/c/%7Bfoo%7D'
|
|
const stringB = 'eXAMPLE://a/./b/../b/%63/%7bfoo%7d'
|
|
|
|
const componentA = fastUriParse(stringA)
|
|
const componentB = fastUriParse(stringB)
|
|
|
|
const benchFastUri = new Bench({ name: 'fast-uri equal' })
|
|
|
|
benchFastUri.add('equal string with string', function () {
|
|
fastUriEqual(stringA, stringA)
|
|
})
|
|
|
|
benchFastUri.add('equal component with component', function () {
|
|
fastUriEqual(componentA, componentA)
|
|
})
|
|
|
|
benchFastUri.add('equal component with string', function () {
|
|
fastUriEqual(componentA, stringA)
|
|
})
|
|
|
|
benchFastUri.add('equal string with component', function () {
|
|
fastUriEqual(stringA, componentA)
|
|
})
|
|
|
|
benchFastUri.add('not equal string with string', function () {
|
|
fastUriEqual(stringA, stringB)
|
|
})
|
|
|
|
benchFastUri.add('not equal component with component', function () {
|
|
fastUriEqual(componentA, componentB)
|
|
})
|
|
|
|
benchFastUri.add('not equal component with string', function () {
|
|
fastUriEqual(componentA, stringB)
|
|
})
|
|
|
|
benchFastUri.add('not equal string with component', function () {
|
|
fastUriEqual(stringA, componentB)
|
|
})
|
|
|
|
await benchFastUri.run()
|
|
console.log(benchFastUri.name)
|
|
console.table(benchFastUri.table())
|