@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
22 lines (21 loc) • 553 B
JavaScript
/**
* Dynamic Arguments Runtime Utilities
*
* Provides type guard functions for dynamic argument resolution.
* Type definitions live in src/lib/types/dynamic.ts (canonical location).
*
* @module dynamic/resolution
*/
/**
* Type guard to check if a value is a DynamicArgument function
*/
export function isDynamicFunction(value) {
return typeof value === "function";
}
/**
* Type guard to check if a function expects context
*/
export function isContextAwareFunction(fn) {
// Check function parameter count
return fn.length > 0;
}