mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
22 lines
282 B
JavaScript
22 lines
282 B
JavaScript
const parseTorrent = require('parse-torrent');
|
|
|
|
(function(){
|
|
let parsed = parseTorrent();
|
|
|
|
parsed.name;
|
|
parsed.length;
|
|
parsed.pieceLength;
|
|
|
|
let indirection1 = {
|
|
parsed: parsed
|
|
};
|
|
|
|
indirection1.parsed.name;
|
|
indirection2(parsed);
|
|
|
|
});
|
|
|
|
function indirection2(t) {
|
|
t.name;
|
|
}
|