Last change
on this file since 6fe77af was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
699 bytes
|
Line | |
---|
1 | var createToPairs = require('./_createToPairs'),
|
---|
2 | keys = require('./keys');
|
---|
3 |
|
---|
4 | /**
|
---|
5 | * Creates an array of own enumerable string keyed-value pairs for `object`
|
---|
6 | * which can be consumed by `_.fromPairs`. If `object` is a map or set, its
|
---|
7 | * entries are returned.
|
---|
8 | *
|
---|
9 | * @static
|
---|
10 | * @memberOf _
|
---|
11 | * @since 4.0.0
|
---|
12 | * @alias entries
|
---|
13 | * @category Object
|
---|
14 | * @param {Object} object The object to query.
|
---|
15 | * @returns {Array} Returns the key-value pairs.
|
---|
16 | * @example
|
---|
17 | *
|
---|
18 | * function Foo() {
|
---|
19 | * this.a = 1;
|
---|
20 | * this.b = 2;
|
---|
21 | * }
|
---|
22 | *
|
---|
23 | * Foo.prototype.c = 3;
|
---|
24 | *
|
---|
25 | * _.toPairs(new Foo);
|
---|
26 | * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed)
|
---|
27 | */
|
---|
28 | var toPairs = createToPairs(keys);
|
---|
29 |
|
---|
30 | module.exports = toPairs;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.