ticon-file-directory"> supports-preserve-symlinks-flag 30f7226d9a first commit 2 yıl önce tailwind-color-palette 30f7226d9a first commit 2 yıl önce tailwindcss 30f7226d9a first commit 2 yıl önce thenify 30f7226d9a first commit 2 yıl önce thenify-all 30f7226d9a first commit 2 yıl önce to-regex-range 30f7226d9a first commit 2 yıl önce tr46 30f7226d9a first commit 2 yıl önce ts-interface-checker 30f7226d9a first commit 2 yıl önce uglify-js 30f7226d9a first commit 2 yıl önce underscore 30f7226d9a first commit 2 yıl önce upper-case 30f7226d9a first commit 2 yıl önce util-deprecate 30f7226d9a first commit 2 yıl önce valid-data-url 30f7226d9a first commit 2 yıl önce web-resource-inliner 30f7226d9a first commit 2 yıl önce webidl-conversions 30f7226d9a first commit 2 yıl önce whatwg-url 30f7226d9a first commit 2 yıl önce wrap-ansi 30f7226d9a first commit 2 yıl önce wrappy 30f7226d9a first commit 2 yıl önce y18n 30f7226d9a first commit 2 yıl önce yallist 30f7226d9a first commit 2 yıl önce yaml 30f7226d9a first commit 2 yıl önce yargs 30f7226d9a first commit 2 yıl önce yargs-parser 30f7226d9a first commit 2 yıl önce .yarn-integrity 30f7226d9a first commit 2 yıl önce tum/network_report_server - Gogs: Simplico Git Service

No Description

toPairsIn.js 737B

12345678910111213141516171819202122232425262728293031
  1. var createToPairs = require('./_createToPairs'),
  2. keysIn = require('./keysIn');
  3. /**
  4. * Creates an array of own and inherited enumerable string keyed-value pairs
  5. * for `object` which can be consumed by `_.fromPairs`. If `object` is a map
  6. * or set, its entries are returned.
  7. *
  8. * @static
  9. * @memberOf _
  10. * @since 4.0.0
  11. * @alias entriesIn
  12. * @category Object
  13. * @param {Object} object The object to query.
  14. * @returns {Array} Returns the key-value pairs.
  15. * @example
  16. *
  17. * function Foo() {
  18. * this.a = 1;
  19. * this.b = 2;
  20. * }
  21. *
  22. * Foo.prototype.c = 3;
  23. *
  24. * _.toPairsIn(new Foo);
  25. * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed)
  26. */
  27. var toPairsIn = createToPairs(keysIn);
  28. module.exports = toPairsIn;