tangle_indexer


git clone https://radroots.dev/git/tangle_indexer.git
Log | Files | Refs | Submodules | LICENSE

npub.ts (156B)


      1 import type { ParamMatcher } from '@sveltejs/kit';
      2 
      3 export const match: ParamMatcher = (value: string): boolean => {
      4     return value.startsWith("npub");
      5 };