Skip to content

Instantly share code, notes, and snippets.

/.js

Created April 25, 2017 19:18
Show Gist options
  • Select an option

  • Save anonymous/db9f7359c81e1887fc72dd918dfe5975 to your computer and use it in GitHub Desktop.

Select an option

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