mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
16 lines
251 B
JavaScript
16 lines
251 B
JavaScript
define([], function() {
|
|
|
|
/**
|
|
* Removes all key-value entries from the stack.
|
|
*
|
|
* @private
|
|
* @name clear
|
|
* @memberOf Stack
|
|
*/
|
|
function stackClear() {
|
|
this.__data__ = { 'array': [], 'map': null };
|
|
}
|
|
|
|
return stackClear;
|
|
});
|