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.

chore(time-ms): ignore regex lint

Mary d1c6c1e1 da8f5926

+1
+1
packages/misc/util-text/lib/index.bench.ts
··· 31 31 }; 32 32 33 33 // regex equivalent 34 + // oxlint-disable-next-line no-control-regex 34 35 const RE_NON_ASCII_OR_CR = /[^\x00-\x7f]|\r/; 35 36 const isAsciiWithoutCr_regex = (text: string): boolean => { 36 37 return !RE_NON_ASCII_OR_CR.test(text);