index.js 103 B

12345
  1. 'use strict';
  2. module.exports = function isObject(x) {
  3. return typeof x === 'object' && x !== null;
  4. };