nikcorg/funcalicious

View on GitHub
src/equals.js

Summary

Maintainability
A
0 mins
Test Coverage
export const equals = (what, strict) => {
    if (strict) {
        return that => that === what;
    }

    return that => that == what;
}