Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }Где ошибка в JS коде?
-
Где ошибка в JS коде?
let text = [[LIST_WITH_FILE_CONTENT]]; let redo = new Set(); let regStr = /.+(\n|$)/mg; function replace(str) { return redo.has(str.trim().toLowerCase()) ? '' : (redo.add(str.trim().toLowerCase()), str); } text = text.replace(regStr, replace); document.write(`<pre>${text}</pre>`) [[LIST_WITH_FILE_CONTENT]]=text;Где ошибка? Выдаёт:

-
@Nikolas said in Где ошибка в JS коде?:
Где ошибка в JS коде?
let text = [[LIST_WITH_FILE_CONTENT]]; let redo = new Set(); let regStr = /.+(\n|$)/mg; function replace(str) { return redo.has(str.trim().toLowerCase()) ? '' : (redo.add(str.trim().toLowerCase()), str); } text = text.replace(regStr, replace); document.write(`<pre>${text}</pre>`) [[LIST_WITH_FILE_CONTENT]]=text;Где ошибка? Выдаёт:
Для действия "выполнить код" здесь ошибка в префиксе let. Для ноды или яваскрипта здесь ошибка в том, что вы переопределяете функцию replace. Ну и к объекту document вы зря обращаетесь
-
@Fox said in Где ошибка в JS коде?:
@Nikolas said in Где ошибка в JS коде?:
Где ошибка в JS коде?
let text = [[LIST_WITH_FILE_CONTENT]]; let redo = new Set(); let regStr = /.+(\n|$)/mg; function replace(str) { return redo.has(str.trim().toLowerCase()) ? '' : (redo.add(str.trim().toLowerCase()), str); } text = text.replace(regStr, replace); document.write(`<pre>${text}</pre>`) [[LIST_WITH_FILE_CONTENT]]=text;Где ошибка? Выдаёт:
Для действия "выполнить код" здесь ошибка в префиксе let. Для ноды или яваскрипта здесь ошибка в том, что вы переопределяете функцию replace. Ну и к объекту document вы зря обращаетесь
Насколько я помню одну из предыдущих серий, действия происходят в контексте браузера xD
To be continued...
-
@UserTrue said in Где ошибка в JS коде?:
@Fox said in Где ошибка в JS коде?:
@Nikolas said in Где ошибка в JS коде?:
Где ошибка в JS коде?
let text = [[LIST_WITH_FILE_CONTENT]]; let redo = new Set(); let regStr = /.+(\n|$)/mg; function replace(str) { return redo.has(str.trim().toLowerCase()) ? '' : (redo.add(str.trim().toLowerCase()), str); } text = text.replace(regStr, replace); document.write(`<pre>${text}</pre>`) [[LIST_WITH_FILE_CONTENT]]=text;Где ошибка? Выдаёт:
Для действия "выполнить код" здесь ошибка в префиксе let. Для ноды или яваскрипта здесь ошибка в том, что вы переопределяете функцию replace. Ну и к объекту document вы зря обращаетесь
Насколько я помню одну из предыдущих серий, действия происходят в контексте браузера xD
Ранее в сериале...
:D