- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
11 lines
321 B
JavaScript
11 lines
321 B
JavaScript
export default function whichModule(exported) {
|
|
if (typeof require === 'undefined')
|
|
return null;
|
|
for (let i = 0, files = Object.keys(require.cache), mod; i < files.length; i++) {
|
|
mod = require.cache[files[i]];
|
|
if (mod.exports === exported)
|
|
return mod;
|
|
}
|
|
return null;
|
|
}
|