Skip to content

Instantly share code, notes, and snippets.

/.js

Created April 25, 2017 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/db9f7359c81e1887fc72dd918dfe5975 to your computer and use it in GitHub Desktop.
Save anonymous/db9f7359c81e1887fc72dd918dfe5975 to your computer and use it in GitHub Desktop.
/**
* Gets 'data-*' property.
* See https://bugs.webkit.org/show_bug.cgi?id=161454
*/
function getDatasetProperty(dataset, propName) {
return typeof Reflect !== 'undefined' ? Reflect.get(dataset, propName) : dataset[ propName ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment