This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// # tinyAMD: a Minimal AMD shim. | |
// I define Minimal AMD as the following: | |
// * Every define() call provides a module id field (no filename magic) | |
// * Every require() call consistently provides a list of dependencies, and | |
// optionally a callback to receive the resolved dependencies | |
// * No additional network traffic to fetch modules | |
// * All dependencies must be defined before a module may be required | |
// ## Uses |