How to use the tiny-types/lib/objects.equal function in tiny-types

To help you get started, weā€™ve selected a few tiny-types examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jan-molak / serenity-js / packages / serenity-bdd / src / stage / crew / serenity-bdd-reporter / reports / SceneReport.ts View on Github external
            if (! report.tags.find(current => equal(current, serialisedTag))) {
                report.tags.push(serialisedTag);
github jan-molak / serenity-js / packages / assertions / src / expectations / contain.ts View on Github external
        .soThat((actualValue, expectedValue) => !! ~ actualValue.findIndex(av => equal(av, expectedValue)));
}