Skip to content

Commit 04ab5fb

Browse files
committed
Address lint failure
1 parent 546364c commit 04ab5fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/@glimmer/compiler/lib/compiler.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ interface Crypto {
3030
export const defaultId: TemplateIdFn = (() => {
3131
const req = (
3232
typeof module === 'object' && typeof module.require === 'function'
33-
? module.require
33+
? // eslint-disable-next-line @typescript-eslint/unbound-method
34+
module.require
3435
: globalThis.require
3536
) as typeof require | undefined;
3637

0 commit comments

Comments
 (0)