UNPKG

webappengine

Version:

A web application platform that can host multiple web apps running with Node.js.

10 lines (7 loc) 231 B
// dataset API for data-* attributes // test by @phiggins42 Modernizr.addTest('dataset', function(){ var n = document.createElement("div"); n.setAttribute("data-a-b", "c"); return !!(n.dataset && n.dataset.aB === "c"); });