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