UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

7 lines (6 loc) 176 B
// Returns a negated version of the passed-in predicate. export default function negate(predicate) { return function() { return !predicate.apply(this, arguments); }; }