1.0.0 • Published 9 months ago

are-strictly-equal v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

are-strictly-equal

Forget the === operator. Use are-strictly-equal.

const eee = require("are-strictly-equal") // yes you have to call it eee because e stands for equal and there are three equal signs in ===

eee(1, 1) // true
eee("1", 1) // false
eee({ foo: "bar" }, 4) // false
eee({ quux: "duck" }, { quux: "duck" }) // false
1.0.0

9 months ago