提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
347 B

  1. import { isAnyObject } from './isAnyObject.js';
  2. /**
  3. * Returns whether the payload is an object like a type passed in < >
  4. *
  5. * Usage: isObjectLike<{id: any}>(payload) // will make sure it's an object and has an `id` prop.
  6. *
  7. * @template T This must be passed in < >
  8. */
  9. export function isObjectLike(payload) {
  10. return isAnyObject(payload);
  11. }