1const Shrinkwrap = require('../lib/shrinkwrap.js') 2 3module.exports = (options, time) => Shrinkwrap 4 .load(options) 5 .then((s) => s.commit()) 6 .then(time) 7 .then(({ result: s }) => JSON.stringify(s, 0, 2)) 8