Skip to content

Instantly share code, notes, and snippets.

@Goldziher
Last active November 27, 2021 16:50
Show Gist options
  • Save Goldziher/79931ec9267370a0cec2afe1e1e5840e to your computer and use it in GitHub Desktop.
Save Goldziher/79931ec9267370a0cec2afe1e1e5840e to your computer and use it in GitHub Desktop.
Duck typing in javascript
function isDuck(value) {
return !!(
value &&
typeof value === 'object' &&
typeof Reflect.get(value, 'quack') === 'function'
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment