Development Artifact Cleanup: ✅ BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location - dev/test-nodes/brother_node/: Moved from root directory for better organization - Contains development configuration, test logs, and test chain data - No impact on production systems - purely development/testing artifact ✅ DEVELOPMENT ARTIFACTS IDENTIFIED: - Chain ID: aitbc-brother-chain (test/development chain) - Ports: 8010 (P2P) and 8011 (RPC) - different from production - Environment: .env file with test configuration - Logs: rpc.log and node.log from development testing session (March 15, 2026) ✅ ROOT DIRECTORY CLEANUP: Removed development clutter from production directory - brother_node/ moved to dev/test-nodes/brother_node/ - Root directory now contains only production-ready components - Development artifacts properly organized in dev/ subdirectory DIRECTORY STRUCTURE IMPROVEMENT: 📁 dev/test-nodes/: Development and testing node configurations 🏗️ Root Directory: Clean production structure with only essential components 🧪 Development Isolation: Test environments separated from production BENEFITS: ✅ Clean Production Directory: No development artifacts in root ✅ Better Organization: Development nodes grouped in dev/ subdirectory ✅ Clear Separation: Production vs development environments clearly distinguished ✅ Maintainability: Easier to identify and manage development components RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
67 lines
2.3 KiB
TypeScript
Executable File
67 lines
2.3 KiB
TypeScript
Executable File
import type { CustomEqualCreatorOptions } from './internalTypes.d.cts';
|
|
import type { sameValueZeroEqual } from './utils.d.cts';
|
|
export { sameValueZeroEqual };
|
|
export type {
|
|
AnyEqualityComparator,
|
|
Cache,
|
|
CircularState,
|
|
ComparatorConfig,
|
|
CreateCustomComparatorConfig,
|
|
CreateState,
|
|
CustomEqualCreatorOptions,
|
|
DefaultState,
|
|
Dictionary,
|
|
EqualityComparator,
|
|
EqualityComparatorCreator,
|
|
InternalEqualityComparator,
|
|
PrimitiveWrapper,
|
|
State,
|
|
TypeEqualityComparator,
|
|
TypedArray,
|
|
} from './internalTypes.d.cts';
|
|
/**
|
|
* Whether the items passed are deeply-equal in value.
|
|
*/
|
|
export declare const deepEqual: <A, B>(a: A, b: B) => boolean;
|
|
/**
|
|
* Whether the items passed are deeply-equal in value based on strict comparison.
|
|
*/
|
|
export declare const strictDeepEqual: <A, B>(a: A, b: B) => boolean;
|
|
/**
|
|
* Whether the items passed are deeply-equal in value, including circular references.
|
|
*/
|
|
export declare const circularDeepEqual: <A, B>(a: A, b: B) => boolean;
|
|
/**
|
|
* Whether the items passed are deeply-equal in value, including circular references,
|
|
* based on strict comparison.
|
|
*/
|
|
export declare const strictCircularDeepEqual: <A, B>(a: A, b: B) => boolean;
|
|
/**
|
|
* Whether the items passed are shallowly-equal in value.
|
|
*/
|
|
export declare const shallowEqual: <A, B>(a: A, b: B) => boolean;
|
|
/**
|
|
* Whether the items passed are shallowly-equal in value based on strict comparison
|
|
*/
|
|
export declare const strictShallowEqual: <A, B>(a: A, b: B) => boolean;
|
|
/**
|
|
* Whether the items passed are shallowly-equal in value, including circular references.
|
|
*/
|
|
export declare const circularShallowEqual: <A, B>(a: A, b: B) => boolean;
|
|
/**
|
|
* Whether the items passed are shallowly-equal in value, including circular references,
|
|
* based on strict comparison.
|
|
*/
|
|
export declare const strictCircularShallowEqual: <A, B>(a: A, b: B) => boolean;
|
|
/**
|
|
* Create a custom equality comparison method.
|
|
*
|
|
* This can be done to create very targeted comparisons in extreme hot-path scenarios
|
|
* where the standard methods are not performant enough, but can also be used to provide
|
|
* support for legacy environments that do not support expected features like
|
|
* `RegExp.prototype.flags` out of the box.
|
|
*/
|
|
export declare function createCustomEqual<Meta = undefined>(
|
|
options?: CustomEqualCreatorOptions<Meta>,
|
|
): <A, B>(a: A, b: B) => boolean;
|