mirror of
https://github.com/swc-project/swc.git
synced 2024-12-29 00:23:10 +03:00
9 lines
237 B
JavaScript
9 lines
237 B
JavaScript
// https://github.com/umdjs/umd/blob/master/returnExports.js
|
|
if (exports) // For Node.js.
|
|
module.exports = null;
|
|
else {
|
|
define, define.amd;
|
|
// For AMD. Register as an anonymous module.
|
|
define([], factory.bind(root, root));
|
|
}
|