@mintjamsinc/ichigojs 0.1.51 → 0.1.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ichigo.cjs CHANGED
@@ -6941,6 +6941,8 @@
6941
6941
  const allDependencies = new Set();
6942
6942
  const directDependencies = functionDependencies[funcName] || [];
6943
6943
  for (const dep of directDependencies) {
6944
+ if (dep === funcName)
6945
+ continue; // Skip self-references
6944
6946
  if (functions[dep]) {
6945
6947
  // It's a function, recursively resolve its dependencies
6946
6948
  const subDependencies = resolveDependencies(dep);