We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31aa1d7 commit 3a936dfCopy full SHA for 3a936df
src/common/helpers.ts
@@ -19,3 +19,4 @@ export function formatVariable(v: VariableDeclaration): string {
19
return [v.typeName?.typeDescriptions.typeString!].concat(v.name || []).join(' ');
20
}
21
22
+export const eq = (a: unknown, b: unknown) => a === b;
0 commit comments