暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

which-module.js 321B

12345678910
  1. export default function whichModule(exported) {
  2. if (typeof require === 'undefined')
  3. return null;
  4. for (let i = 0, files = Object.keys(require.cache), mod; i < files.length; i++) {
  5. mod = require.cache[files[i]];
  6. if (mod.exports === exported)
  7. return mod;
  8. }
  9. return null;
  10. }