UNPKG

dina-agi

Version:

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

9 lines (8 loc) 221 B
// Returns a function that will only be executed on and after the Nth call. export default function after(times, func) { return function() { if (--times < 1) { return func.apply(this, arguments); } }; }