File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -301,6 +301,9 @@ export function isImmutableDefault(value: unknown): boolean;
301
301
// @public
302
302
export function isPlain(val : any ): boolean ;
303
303
304
+ // @public
305
+ export function isPlainObject(value : unknown ): value is object ;
306
+
304
307
// @public (undocumented)
305
308
export class MiddlewareArray <Middlewares extends Middleware <any , any >> extends Array <Middlewares > {
306
309
// (undocumented)
Original file line number Diff line number Diff line change @@ -107,3 +107,5 @@ export {
107
107
} from './createAsyncThunk'
108
108
109
109
export { nanoid } from './nanoid'
110
+
111
+ export { default as isPlainObject } from './isPlainObject'
Original file line number Diff line number Diff line change 5
5
*
6
6
* @param {any } value The value to inspect.
7
7
* @returns {boolean } True if the argument appears to be a plain object.
8
+ *
9
+ * @public
8
10
*/
9
11
export default function isPlainObject ( value : unknown ) : value is object {
10
12
if ( typeof value !== 'object' || value === null ) return false
You can’t perform that action at this time.
0 commit comments