Package Exports
- uupaa.spec.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (uupaa.spec.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Spec.js 
Spec detection.
Document
How to use
<script src="lib/Spec.js"></script>
<script src="lib/SpecCatalog.js"></script>
<script>
var spec = new Spec();
console.log(spec.USER_AGENT); // "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36";
console.log(spec.BROWSER_NAME); // "Chrome"
</script>// for WebWorkers
importScripts("lib/Spec.js");
importScripts("lib/SpecCatalog.js");
...// for Node.js
require("lib/Spec.js");
require("lib/SpecCatalog.js");
...