vituarvom / react-smart-utils

A simple, smart hooks and utility functions to make development easier
https://www.npmjs.com/package/react-smart-utils
13 stars 34 forks source link

isStringEqual #29

Open bharat-dussa opened 1 month ago

bharat-dussa commented 1 month ago

isStringEqual

Checks if two provided strings are equal.

File: src/utils/string/isStringEqual/isStringEqual.ts Test File: src/utils/string/isStringEqual/isStringEqual.test.ts

Parameters:

Returns:

Example:


isStringEqual('Hello', 'Hello'); // true
isStringEqual('Hello', 'World');  // false
isStringEqual('Hello', 'hello');  // false (case-sensitive)
nikkivaddepelli commented 1 month ago

I would like to work on this issue. Can you please assign this to me?

RahulJOD commented 1 month ago

Hi, Please assign this issue to me. I want to contribute.