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
11 lines
347 B
import { isAnyObject } from './isAnyObject.js';
|
|
/**
|
|
* Returns whether the payload is an object like a type passed in < >
|
|
*
|
|
* Usage: isObjectLike<{id: any}>(payload) // will make sure it's an object and has an `id` prop.
|
|
*
|
|
* @template T This must be passed in < >
|
|
*/
|
|
export function isObjectLike(payload) {
|
|
return isAnyObject(payload);
|
|
}
|