Skip to content

Instantly share code, notes, and snippets.

@JoeyBurzynski
Forked from anonymous/.js
Created October 30, 2017 15:00
Show Gist options
  • Select an option

  • Save JoeyBurzynski/9648cb778fa6ceae28c923c91f265dac to your computer and use it in GitHub Desktop.

Select an option

Save JoeyBurzynski/9648cb778fa6ceae28c923c91f265dac 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