UNPKG

dina-agi

Version:

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

11 lines (9 loc) 267 B
import noop from './noop.js'; import get from './get.js'; // Generates a function for a given object that returns a given property. export default function propertyOf(obj) { if (obj == null) return noop; return function(path) { return get(obj, path); }; }