source: imaps-frontend/node_modules/isobject/index.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 288 bytes
RevLine 
[79a0317]1/*!
2 * isobject <https://github.com/jonschlinkert/isobject>
3 *
4 * Copyright (c) 2014-2017, Jon Schlinkert.
5 * Released under the MIT License.
6 */
7
8'use strict';
9
10module.exports = function isObject(val) {
11 return val != null && typeof val === 'object' && Array.isArray(val) === false;
12};
Note: See TracBrowser for help on using the repository browser.