Skip to content

Instantly share code, notes, and snippets.

@pallove
Created December 10, 2023 06:47
Show Gist options
  • Save pallove/59c1ee78dacd79b20c721892cb59631b to your computer and use it in GitHub Desktop.
Save pallove/59c1ee78dacd79b20c721892cb59631b to your computer and use it in GitHub Desktop.
check whether javascript object is a proxy
const isProxy = obj => {
try {
let test = {obj : true}
test[obj] = false
} catch {
return true
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment