Sha256: 8c9e70d8ebff2eee29195341503dff1377f66c4eafef56d911a1ad9c1aea6e03
Contents?: true
Size: 206 Bytes
Versions: 26
Compression:
Stored size: 206 Bytes
Contents
/** * Performs a case-insensitive comparison of two given strings. */ export function isStringEqual(actual: string, expected: string): boolean { return actual.toLowerCase() === expected.toLowerCase() }
Version data entries
26 entries across 26 versions & 1 rubygems