diff options
author | Sam Potts <sam@potts.es> | 2019-02-23 13:07:35 +1100 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2019-02-23 13:07:35 +1100 |
commit | 438ebe501320ac731aadcd94e7239a8778407b4a (patch) | |
tree | 288f4e4ecaf17e57a83fd882114e527c4775460c /src/js/utils/urls.js | |
parent | 4335a2a0d1cbd71c7794ab2e8e13132c4b49e6e9 (diff) | |
download | plyr-438ebe501320ac731aadcd94e7239a8778407b4a.tar.lz plyr-438ebe501320ac731aadcd94e7239a8778407b4a.tar.xz plyr-438ebe501320ac731aadcd94e7239a8778407b4a.zip |
Jsdoc updates
Diffstat (limited to 'src/js/utils/urls.js')
-rw-r--r-- | src/js/utils/urls.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/utils/urls.js b/src/js/utils/urls.js index 3ebe622e..843c6aa6 100644 --- a/src/js/utils/urls.js +++ b/src/js/utils/urls.js @@ -6,8 +6,8 @@ import is from './is'; /** * Parse a string to a URL object - * @param {string} input - the URL to be parsed - * @param {boolean} safe - failsafe parsing + * @param {String} input - the URL to be parsed + * @param {Boolean} safe - failsafe parsing */ export function parseUrl(input, safe = true) { let url = input; |