Updated injectScript.js to perform a null check on its filepath parameter.

This commit is contained in:
C. Naoto Abreu Takemura 2019-01-31 13:16:46 -08:00
Родитель a2deb403e6
Коммит 0adbc58a3a
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -4,6 +4,10 @@
* @param {string} filepath - The filepath to the script to be injected.
*/
function injectScript (filepath) {
if (filepath == null) {
throw Error('filepath must not be null or undefined');
}
const bodyTag = document.getElementsByTagName('body')[0];
const scriptTag = document.createElement('script');
scriptTag.setAttribute('type', 'text/javascript');