Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/iam_policies/src/conditionOperators/string/stringNotEqualsIgnoreCase.ts>stringNotEqualsIgnoreCase

Iam policies implementation for create roles and manage permissions
Latest
function stringNotEqualsIgnoreCase
import { stringNotEqualsIgnoreCase } from "https://deno.land/x/iam_policies@v4.17.0/src/conditionOperators/string/stringNotEqualsIgnoreCase.ts";

Negated string matching, ignoring case.

Examples

Example 1

stringNotEqualsIgnoreCase('hi', 'no')
// => true

stringNotEqualsIgnoreCase('hi', 'Hi')
// => false

Parameters

data: string

The value to be compared.

expected: string

The expected value.

Returns

boolean

Returns true if value is not equal to expected value.