UNPKG

claude-flow

Version:

Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)

8 lines (7 loc) 234 B
/*! fromentries. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ module.exports = function fromEntries (iterable) { return [...iterable].reduce((obj, [key, val]) => { obj[key] = val return obj }, {}) }