a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(tid): mark table IIFE as pure expressions

Mary 1111462c 0c56e4b6

+2 -2
+2 -2
packages/utilities/tid/lib/s32.ts
··· 1 1 const S32_CHAR = '234567abcdefghijklmnopqrstuvwxyz'; 2 2 3 - const S32_DECODE_TABLE = (() => { 3 + const S32_DECODE_TABLE = /*#__PURE__*/ (() => { 4 4 const table = new Int16Array(123); 5 5 table.fill(-1); 6 6 ··· 12 12 return table; 13 13 })(); 14 14 15 - export const S32_2CHAR_TABLE = (() => { 15 + export const S32_2CHAR_TABLE = /*#__PURE__*/ (() => { 16 16 const table = Array.from<string>({ length: 1024 }); 17 17 18 18 for (let i = 0; i < 1024; i++) {