update files

This commit is contained in:
nuintun 2015-12-04 16:48:27 +08:00
parent ad53cbed09
commit a6438766d1

View File

@ -1,3 +1,10 @@
/**
* Created by nuintun on 2015/12/4.
* See: https://github.com/rsms/js-lru
*/
'use strict';
/**
* A doubly linked list-based Least Recently Used (LRU) cache. Will keep most
* recently used items while discarding least recently used items when its limit
@ -308,6 +315,6 @@ LRUCache.prototype.toString = function (){
s += ' < ';
}
}
return s;
};