Files
lodash/_stackClear.js
John-David Dalton 6f47eae67b Bump to v4.12.0.
2016-05-08 12:21:54 -07:00

16 lines
259 B
JavaScript

define(['./_ListCache'], function(ListCache) {
/**
* Removes all key-value entries from the stack.
*
* @private
* @name clear
* @memberOf Stack
*/
function stackClear() {
this.__data__ = new ListCache;
}
return stackClear;
});