tangle_indexer


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

country.ts (148B)


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