All files / src/manifest hash.js

100% Statements 5/5
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4
1 2 3 4 5 6 72x 2x   45x   2x  
const objectHash = require('object-hash')
const stringify = require('json-stable-stringify')
 
const hash = obj => objectHash(stringify(obj))
 
module.exports = hash