Erik Arvidsson (2013-07-31T15:36:45.000Z)
domenic at domenicdenicola.com (2013-08-05T15:06:16.880Z)
One way could be to have a shared module with the symbol that both w1.1 and w1.2 uses. ```js // w-symbols.js export let foo = Symbol(); // w-1.1.js import {foo} from 'w-symbols'; ... // w-1.2.js import {foo} from 'w-symbols'; ... ``` Other options include storing the symbol in some kind of global registry (which the module registry is doing above).