| 12345678910111213141516171819202122 | 
							- /**
 
- 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;
 
 
  |