astro-ghostcms/.pnpm-store/v3/files/be/c1a0546cf71e1df88c7a5fedb66...

10 lines
248 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'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
}