diff --git a/static/js/terminal/lru.js b/static/js/terminal/lru.js index 5a2dc99..7fa4757 100644 --- a/static/js/terminal/lru.js +++ b/static/js/terminal/lru.js @@ -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; };