is.js

  1. /**
  2. * @function is
  3. * @description Verifies the type of the provided argument
  4. *
  5. */
  6. import curry from './curry'
  7. import type from './type'
  8. export default curry(function is (Ctor, val) {
  9. return type(val) === Ctor
  10. })