UNPKG

@rustable/utils

Version:

Essential utilities for object cloning, string manipulation, and value comparison in TypeScript, inspired by Rust's standard library.

8 lines (7 loc) 244 B
/** * Helper function to compare two values for equality * @param a First value to compare * @param b Second value to compare * @returns true if values are equal, false otherwise */ export declare function equals(a: any, b: any): boolean;