| 364 | }; |
| 365 | |
| 366 | const flattenArray = possibleArray => { |
| 367 | return Array.isArray(possibleArray) |
| 368 | ? possibleArray.join("") |
| 369 | : possibleArray; |
| 370 | }; |
| 371 | |
| 372 | const updateTitle = (title, attributes) => { |
| 373 | if (typeof title !== "undefined" && document.title !== title) { |
no outgoing calls
no test coverage detected
searching dependent graphs…