main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
676 bytes
|
Line | |
---|
1 | import addSetEntry from './_addSetEntry.js';
|
---|
2 | import arrayReduce from './_arrayReduce.js';
|
---|
3 | import setToArray from './_setToArray.js';
|
---|
4 |
|
---|
5 | /** Used to compose bitmasks for cloning. */
|
---|
6 | var CLONE_DEEP_FLAG = 1;
|
---|
7 |
|
---|
8 | /**
|
---|
9 | * Creates a clone of `set`.
|
---|
10 | *
|
---|
11 | * @private
|
---|
12 | * @param {Object} set The set to clone.
|
---|
13 | * @param {Function} cloneFunc The function to clone values.
|
---|
14 | * @param {boolean} [isDeep] Specify a deep clone.
|
---|
15 | * @returns {Object} Returns the cloned set.
|
---|
16 | */
|
---|
17 | function cloneSet(set, isDeep, cloneFunc) {
|
---|
18 | var array = isDeep ? cloneFunc(setToArray(set), CLONE_DEEP_FLAG) : setToArray(set);
|
---|
19 | return arrayReduce(array, addSetEntry, new set.constructor);
|
---|
20 | }
|
---|
21 |
|
---|
22 | export default cloneSet;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.