We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e165928 commit dd32392Copy full SHA for dd32392
api/src/context-base/context.ts
@@ -29,7 +29,7 @@ export class Context {
29
30
/** Get a key to uniquely identify a context value */
31
public static createKey(description: string) {
32
- return Symbol(description);
+ return Symbol.for(description);
33
}
34
35
/**
0 commit comments