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

index.js 248B

123456789
  1. 'use strict'
  2. module.exports = function whichModule (exported) {
  3. for (var i = 0, files = Object.keys(require.cache), mod; i < files.length; i++) {
  4. mod = require.cache[files[i]]
  5. if (mod.exports === exported) return mod
  6. }
  7. return null
  8. }