From a6438766d1296279858b74b1033c5c4a7221d831 Mon Sep 17 00:00:00 2001 From: nuintun Date: Fri, 4 Dec 2015 16:48:27 +0800 Subject: [PATCH] update files --- static/js/terminal/lru.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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; };