Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
node_modules
/
rambda
/
src
/
identical.js
blob: ecc04e312f0033354b2672a01b68fe8beac74ac9 [
file
]
import
{
objectIs
}
from
'./_internals/objectIs.js'
export
function
identical
(
a
,
b
){
if
(
arguments
.
length
===
1
)
return
_b
=>
identical
(
a
,
_b
)
return
objectIs
(
a
,
b
)
}