* Creates an object URL for a given File object. * * @param {Blob} blob Blob object * @returns {string|boolean} Returns object URL if API exists, else false.
(blob)
| 23 | * @returns {string|boolean} Returns object URL if API exists, else false. |
| 24 | */ |
| 25 | function createObjectURL(blob) { |
| 26 | return urlAPI ? urlAPI.createObjectURL(blob) : false |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Revokes a given object URL. |
no outgoing calls
no test coverage detected