1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 02:37:14 +00:00

Remove unused local variables

This commit is contained in:
Jermolene 2014-12-16 08:35:26 +00:00
parent 97422ee1b9
commit 86329f5daa

View File

@ -263,8 +263,7 @@ exports.formatDateString = function(date,template) {
while(t.length){
var matchString = "";
$tw.utils.each(matches, function(m) {
var r,l,
match = m[0].exec(t);
var match = m[0].exec(t);
if(match) {
matchString = m[1].call();
t = t.substr(match[0].length);