Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿

Remove redundant type annotation in regexLookbehindAvailable IIFE (#6000)

authored by

Alex Pikme and committed by
GitHub
a7dcfea8 10eacb33

+1 -1
+1 -1
packages/data/utils/regexLookbehindAvailable.ts
··· 1 - const regexLookbehindAvailable: boolean = ((): boolean => { 1 + const regexLookbehindAvailable: boolean = (() => { 2 2 try { 3 3 return "ab".replace(/(?<=a)b/g, "c") === "ac"; 4 4 } catch {