Skip to content

Instantly share code, notes, and snippets.

@mindplay-dk
Last active February 29, 2024 09:23
Show Gist options
  • Save mindplay-dk/1843c267fc633688059dfa5e3b07d0dd to your computer and use it in GitHub Desktop.
Save mindplay-dk/1843c267fc633688059dfa5e3b07d0dd to your computer and use it in GitHub Desktop.
Recursively search the global namespace (window) for a variable with a given name
function findVar(varName) {
let seen = new Map();
function search(obj, prefix = "") {
if (seen.has(obj)) {
return;
}
seen.set(obj, true);
const names = new Set(Object.getOwnPropertyNames(obj));
for (const name in obj) {
names.add(name);
}
for (const name of names.values()) {
if (name === varName) {
console.log(prefix + name);
}
if ((Object.hasOwn(obj, name)) && (typeof obj[name] === "object") && (obj[name] != null)) {
search(obj[name], prefix + name + ".");
}
}
}
search(window);
}
@mindplay-dk
Copy link
Author

@Stehlampe2020 it wasn't enumerating non-enumerable properties - try the updated version?

@Lampe2020
Copy link

Thanks, now it works :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment