Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
323 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /**
|
---|
| 2 | * Checks if a stack value for `key` exists.
|
---|
| 3 | *
|
---|
| 4 | * @private
|
---|
| 5 | * @name has
|
---|
| 6 | * @memberOf Stack
|
---|
| 7 | * @param {string} key The key of the entry to check.
|
---|
| 8 | * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
|
---|
| 9 | */
|
---|
| 10 | function stackHas(key) {
|
---|
| 11 | return this.__data__.has(key);
|
---|
| 12 | }
|
---|
| 13 |
|
---|
| 14 | module.exports = stackHas;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.