PHP 8.2.30
Preview: isPlainObject.js Size: 2.17 KB
//opt/alt/alt-nodejs9/root/lib/node_modules/npm/node_modules/cli-table2/node_modules/lodash/lang/isPlainObject.js

var baseForIn = require('../internal/baseForIn'),
    isArguments = require('./isArguments'),
    isObjectLike = require('../internal/isObjectLike');

/** `Object#toString` result references. */
var objectTag = '[object Object]';

/** Used for native method references. */
var objectProto = Object.prototype;

/** Used to check objects for own properties. */
var hasOwnProperty = objectProto.hasOwnProperty;

/**
 * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)
 * of values.
 */
var objToString = objectProto.toString;

/**
 * Checks if `value` is a plain object, that is, an object created by the
 * `Object` constructor or one with a `[[Prototype]]` of `null`.
 *
 * **Note:** This method assumes objects created by the `Object` constructor
 * have no inherited enumerable properties.
 *
 * @static
 * @memberOf _
 * @category Lang
 * @param {*} value The value to check.
 * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.
 * @example
 *
 * function Foo() {
 *   this.a = 1;
 * }
 *
 * _.isPlainObject(new Foo);
 * // => false
 *
 * _.isPlainObject([1, 2, 3]);
 * // => false
 *
 * _.isPlainObject({ 'x': 0, 'y': 0 });
 * // => true
 *
 * _.isPlainObject(Object.create(null));
 * // => true
 */
function isPlainObject(value) {
  var Ctor;

  // Exit early for non `Object` objects.
  if (!(isObjectLike(value) && objToString.call(value) == objectTag && !isArguments(value)) ||
      (!hasOwnProperty.call(value, 'constructor') && (Ctor = value.constructor, typeof Ctor == 'function' && !(Ctor instanceof Ctor)))) {
    return false;
  }
  // IE < 9 iterates inherited properties before own properties. If the first
  // iterated property is an object's own property then there are no inherited
  // enumerable properties.
  var result;
  // In most environments an object's own properties are iterated before
  // its inherited properties. If the last iterated property is an object's
  // own property then there are no inherited enumerable properties.
  baseForIn(value, function(subValue, key) {
    result = key;
  });
  return result === undefined || hasOwnProperty.call(value, result);
}

module.exports = isPlainObject;

Directory Contents

Dirs: 0 × Files: 30

Name Size Perms Modified Actions
2.24 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.75 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
39 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
464 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
493 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
963 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.13 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
901 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
851 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
572 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.20 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.92 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
955 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
811 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.03 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.86 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
825 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.26 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
365 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.03 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
732 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
2.17 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
830 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
889 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
2.44 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
400 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
458 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
487 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
697 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
726 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).