Sign in
chromium
/
devtools
/
devtools-frontend
/
ec00a13ce62ddc9f5697a4e4d30dfcafaacd9fc2
/
.
/
node_modules
/
ramda
/
src
/
internal
/
_isTransformer.js
blob: 015386f14bfb390a0ecc92b51dcc0d1a7a1ce7bb [
file
]
function
_isTransformer
(
obj
)
{
return
obj
!=
null
&&
typeof
obj
[
'@@transducer/step'
]
===
'function'
;
}
module
.
exports
=
_isTransformer
;