deno.land / x / yargs@v17.6.0-deno / lib / utils / which-module.ts

which-module.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
export default function whichModule(exported: object) { 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;}
yargs

Version Info

Tagged at
a year ago