Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_baseToPairs.js 537B

123456789101112131415161718
  1. var arrayMap = require('./_arrayMap');
  2. /**
  3. * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array
  4. * of key-value pairs for `object` corresponding to the property names of `props`.
  5. *
  6. * @private
  7. * @param {Object} object The object to query.
  8. * @param {Array} props The property names to get values for.
  9. * @returns {Object} Returns the key-value pairs.
  10. */
  11. function baseToPairs(object, props) {
  12. return arrayMap(props, function(key) {
  13. return [key, object[key]];
  14. });
  15. }
  16. module.exports = baseToPairs;