All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._getMatchData.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
var isStrictComparable = require('./_isStrictComparable'),
    keys = require('./keys');

/**
 * Gets the property names, values, and compare flags of `object`.
 *
 * @private
 * @param {Object} object The object to query.
 * @returns {Array} Returns the match data of `object`.
 */
function getMatchData(object) {
  var result = keys(object),
      length = result.length;

  while (length--) {
    var key = result[length],
        value = object[key];

    result[length] = [key, value, isStrictComparable(value)];
  }
  return result;
}

module.exports = getMatchData;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy