drowsy-probius / twitch-icon-selector

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
a year ago2 years old
Documentation comment not found for arrow function waitForSyncData
 1const waitForSyncData = () => { 2  return new Promise((resolve, reject) => {
 3    const timeout = 2000;
 4    setTimeout(() => {
Documentation comment not found for arrow function init
16  })
17}
18
19const init = async () => { 20  const browserSyncData = await waitForSyncData();
21  console.log(browserSyncData);
22  const renderOptions = browserSyncData.iconRenderOptions;
Documentation comment not found for arrow function streamChatObserverHandler
453  }
454}
455
456const streamChatObserverHandler = (mutationList, observer) => {457  if(isChatHidden)
458  {
459    logger.info(`Chat area is recovered!`);
Documentation comment not found for arrow function insertTextToInputArea
118}
119
120
121const insertTextToInputArea = (text) => {122  inputArea.focus();
123  const dataTransfer = new DataTransfer();
124  dataTransfer.setData("text", text);
Documentation comment not found for arrow function chatScrollByOne
 11}
 12
 13
 14const chatScrollByOne = () => { 15  let scrollHeight = 100;
 16  if(iconRenderOptions.type === 0)
 17  {