• File: index.d.ts
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/is-obj/index.d.ts
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 345 bytes
  • MIME-type: text/x-java
  • Charset: utf-8
/**
Check if a value is an object.

Keep in mind that array, function, regexp, etc, are objects in JavaScript.

@example
```
import isObject = require('is-obj');

isObject({foo: 'bar'});
//=> true

isObject([1, 2, 3]);
//=> true

isObject('foo');
//=> false
```
*/
declare function isObject(value: unknown): value is object;

export = isObject;