Skip to content

Instantly share code, notes, and snippets.

@plukevdh
Created October 24, 2016 18:33
Show Gist options
  • Save plukevdh/4af3f884933ef8411e398e1c9ea236d1 to your computer and use it in GitHub Desktop.
Save plukevdh/4af3f884933ef8411e398e1c9ea236d1 to your computer and use it in GitHub Desktop.
Ramda - Type Detection Functions
const isObject = R.compose(R.equals('Object'), R.type);
const isScalar = R.compose(R.not, R.either(isObject, R.isArrayLike), R.last, R.values);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment