|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
424 bytes
|
| Line | |
|---|
| 1 | /** Used to stand-in for `undefined` hash values. */
|
|---|
| 2 | var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
|---|
| 3 |
|
|---|
| 4 | /**
|
|---|
| 5 | * Adds `value` to the array cache.
|
|---|
| 6 | *
|
|---|
| 7 | * @private
|
|---|
| 8 | * @name add
|
|---|
| 9 | * @memberOf SetCache
|
|---|
| 10 | * @alias push
|
|---|
| 11 | * @param {*} value The value to cache.
|
|---|
| 12 | * @returns {Object} Returns the cache instance.
|
|---|
| 13 | */
|
|---|
| 14 | function setCacheAdd(value) {
|
|---|
| 15 | this.__data__.set(value, HASH_UNDEFINED);
|
|---|
| 16 | return this;
|
|---|
| 17 | }
|
|---|
| 18 |
|
|---|
| 19 | module.exports = setCacheAdd;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.