仪表盘
版本库
文件存储
活动
搜索
登录
余昊杰
/
XM_GK_QD
夏蒙工控前端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
1
hao
2025-03-27
e610e1c17f62b423a717fadaaa7b139d02857793
[~yhj/XM_GK_QD.git]
/
夏蒙注塑报工
/
node_modules
/
which-module
/
index.js
1
2
3
4
5
6
7
8
9
'use strict'
module.exports = function whichModule (exported) {
for (var 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
}