|
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:
254 bytes
|
| Line | |
|---|
| 1 | var ListCache = require('./_ListCache');
|
|---|
| 2 |
|
|---|
| 3 | /**
|
|---|
| 4 | * Removes all key-value entries from the stack.
|
|---|
| 5 | *
|
|---|
| 6 | * @private
|
|---|
| 7 | * @name clear
|
|---|
| 8 | * @memberOf Stack
|
|---|
| 9 | */
|
|---|
| 10 | function stackClear() {
|
|---|
| 11 | this.__data__ = new ListCache;
|
|---|
| 12 | this.size = 0;
|
|---|
| 13 | }
|
|---|
| 14 |
|
|---|
| 15 | module.exports = stackClear;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.