git ssb

1+

Matt McKegg / mutant



Tree: 6cbb0cdc8dd11c5f29e9c875e9f602f1d9a21f2a

Files: 6cbb0cdc8dd11c5f29e9c875e9f602f1d9a21f2a / lib / is-same.js

233 bytesRaw
1module.exports = function isSame (a, b, compare) {
2 if (compare && compare(a, b)) {
3 return true
4 } else if (typeof a !== typeof b || (typeof a === 'object' && a !== null)) {
5 return false
6 } else {
7 return a === b
8 }
9}
10

Built with git-ssb-web