Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
/* eslint-env commonjs */
// Module C and module D have circular dependencies.
// This should not prevent from loading them.
exports.enteredD = true;
exports.copiedFromC = JSON.parse(JSON.stringify(C));
exports.exportedFromC = C;
exports.finishedD = true;