Recently I was looking into Firefox Add-on Builder SDK sources, and stumbled on such constants declaration:
const { getCodeForKey, toJSON } = require("../../keyboard/utils");
I could find information about CommonJS Modules, but left part of this assignment slightly confuses me, since it must be language specific, and I couldn't google anything on that.
Can someone point me to some specification/draft that explains what's going on here?
This is a destructuring assignment, something that is currently only implemented by the SpiderMonkey JavaScript engine which is used by Firefox. Here is how it works with arrays:
And here is how it works with objects:
A slightly more elaborate example:
So your code example is equivalent to:
It is merely a more convenient way to write it.