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.
63 lines
2.2 KiB
TypeScript
Executable File
63 lines
2.2 KiB
TypeScript
Executable File
import type { Dictionary, PrimitiveWrapper, State, TypedArray } from './internalTypes.d.mts';
|
|
import type { sameValueZeroEqual } from './utils.d.mts';
|
|
/**
|
|
* Whether the array buffers are equal in value.
|
|
*/
|
|
export declare function areArrayBuffersEqual(a: ArrayBuffer, b: ArrayBuffer): boolean;
|
|
/**
|
|
* Whether the arrays are equal in value.
|
|
*/
|
|
export declare function areArraysEqual(a: any[], b: any[], state: State<any>): boolean;
|
|
/**
|
|
* Whether the dataviews are equal in value.
|
|
*/
|
|
export declare function areDataViewsEqual(a: DataView, b: DataView): boolean;
|
|
/**
|
|
* Whether the dates passed are equal in value.
|
|
*/
|
|
export declare function areDatesEqual(a: Date, b: Date): boolean;
|
|
/**
|
|
* Whether the errors passed are equal in value.
|
|
*/
|
|
export declare function areErrorsEqual(a: Error, b: Error): boolean;
|
|
/**
|
|
* Whether the functions passed are equal in value.
|
|
*/
|
|
export declare function areFunctionsEqual(a: (...args: any[]) => any, b: (...args: any[]) => any): boolean;
|
|
/**
|
|
* Whether the `Map`s are equal in value.
|
|
*/
|
|
export declare function areMapsEqual(a: Map<any, any>, b: Map<any, any>, state: State<any>): boolean;
|
|
/**
|
|
* Whether the numbers are equal in value.
|
|
*/
|
|
export declare const areNumbersEqual: typeof sameValueZeroEqual;
|
|
/**
|
|
* Whether the objects are equal in value.
|
|
*/
|
|
export declare function areObjectsEqual(a: Dictionary, b: Dictionary, state: State<any>): boolean;
|
|
/**
|
|
* Whether the objects are equal in value with strict property checking.
|
|
*/
|
|
export declare function areObjectsEqualStrict(a: Dictionary, b: Dictionary, state: State<any>): boolean;
|
|
/**
|
|
* Whether the primitive wrappers passed are equal in value.
|
|
*/
|
|
export declare function arePrimitiveWrappersEqual(a: PrimitiveWrapper, b: PrimitiveWrapper): boolean;
|
|
/**
|
|
* Whether the regexps passed are equal in value.
|
|
*/
|
|
export declare function areRegExpsEqual(a: RegExp, b: RegExp): boolean;
|
|
/**
|
|
* Whether the `Set`s are equal in value.
|
|
*/
|
|
export declare function areSetsEqual(a: Set<any>, b: Set<any>, state: State<any>): boolean;
|
|
/**
|
|
* Whether the TypedArray instances are equal in value.
|
|
*/
|
|
export declare function areTypedArraysEqual(a: TypedArray, b: TypedArray): boolean;
|
|
/**
|
|
* Whether the URL instances are equal in value.
|
|
*/
|
|
export declare function areUrlsEqual(a: URL, b: URL): boolean;
|