/var/www/flurhymez/node_modules/isobject
NameSizeModeActions
index.d.ts970644editdlrm
index.js2880644editdlrm
LICENSE10870644editdlrm
package.json24430644editdlrm
README.md39620644editdlrm
Edit: /var/www/flurhymez/node_modules/isobject/index.js (288B)
/*! * isobject * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. */ 'use strict'; module.exports = function isObject(val) { return val != null && typeof val === 'object' && Array.isArray(val) === false; };