time-to-botec/js/node_modules/@stdlib/assert/is-plain-object/docs/repl.txt

25 lines
370 B
Plaintext
Raw Normal View History

{{alias}}( value )
Tests if a value is a plain object.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether value is a plain object.
Examples
--------
> var bool = {{alias}}( {} )
true
> bool = {{alias}}( null )
false
See Also
--------