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>
// for Browser
console.log( new Spec().dump() );
</script>// for WebWorkers
importScripts("lib/Spec.js");
console.log( new Spec().dump() );// for Node.js
var Spec = require("lib/Spec.js");
console.log( new Spec().dump() );