(kec_object, delay = 180)
| 1954 | }; |
| 1955 | |
| 1956 | const scheduleEverChangingAttach = function (kec_object, delay = 180) { |
| 1957 | if (global.kecAttachTimer) { |
| 1958 | clearTimeout(global.kecAttachTimer); |
| 1959 | } |
| 1960 | global.kecAttachTimer = setTimeout(function () { |
| 1961 | attachDate(kec_object); |
| 1962 | }, delay); |
| 1963 | }; |
| 1964 | |
| 1965 | const flattenConversationText = function (value) { |
| 1966 | if (value === null || value === undefined) { |
no test coverage detected