mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 13:32:07 +07:00
12 lines
347 B
JavaScript
12 lines
347 B
JavaScript
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);
|
|
}
|