UNPKG

dina-agi

Version:

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

18 lines (12 loc) 241 B
'use strict'; module.exports = function (str, len, ch) { str = str + ''; len = len - str.length; if (len <= 0) return str; if (!ch && ch !== 0) ch = ' '; ch = ch + ''; while (len--) { str = ch + str; } return str; }