Collection+JSON to hyper+json transform.
$ npm install cj2hyper
var cj2hyper = require('cj2hyper');
var document = {
"collection": {
"version": "1.0",
"href" : "http://example.org/friends/"
}
};
cj2hyper(document) // {"href": "http://example.org/friends/"}
See test cases for example output.
$ npm test