Files
release-action/node_modules/@octokit/endpoint/node_modules/isobject/index.js
Nick Cipollo e75a11bff3
Some checks failed
PR Checks / check_pr (push) Has been cancelled
Create 1.4.0 release
2019-12-13 16:07:38 -05:00

11 lines
271 B
JavaScript

/*!
* isobject <https://github.com/jonschlinkert/isobject>
*
* Copyright (c) 2014-2017, Jon Schlinkert.
* Released under the MIT License.
*/
export default function isObject(val) {
return val != null && typeof val === 'object' && Array.isArray(val) === false;
};