mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 09:03:29 +00:00
9 lines
347 B
TypeScript
9 lines
347 B
TypeScript
|
/**
|
||
|
* This is a slightly modified version of jQuery.isPlainObject.
|
||
|
* A plain object is an object whose internal class property is [object Object].
|
||
|
* @method Phaser.Utils.isPlainObject
|
||
|
* @param {object} obj - The object to inspect.
|
||
|
* @return {boolean} - true if the object is plain, otherwise false.
|
||
|
*/
|
||
|
export default function (obj: any): boolean;
|