UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

7 lines (6 loc) 206 B
/** * Performs a case-insensitive comparison of two given strings. */ export function isStringEqual(actual: string, expected: string): boolean { return actual.toLowerCase() === expected.toLowerCase() }