custom-require
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -23,3 +23,3 @@ { | ||
}, | ||
"version": "0.0.2" | ||
"version": "0.0.3" | ||
} |
@@ -50,2 +50,12 @@ # Custom Require | ||
Also, it works with asynchronous requires | ||
```js | ||
/* FILE: async_test.js */ | ||
// Load any non-native module | ||
require("react"); | ||
setTimeout(function() { | ||
require("redux"); | ||
}, 1000); | ||
``` | ||
## Limitations | ||
@@ -52,0 +62,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7572
80