| /** |
| * @license |
| * Copyright 2017 The Emscripten Authors |
| * SPDX-License-Identifier: MIT |
| */ |
| |
| // Prefix of data URIs emitted by SINGLE_FILE and related options. |
| var dataURIPrefix = 'data:application/octet-stream;base64,'; |
| |
| // Indicates whether filename is a base64 data URI. |
| function isDataURI(filename) { |
| // Prefix of data URIs emitted by SINGLE_FILE and related options. |
| return filename.startsWith(dataURIPrefix); |
| } |
| |
| // Indicates whether filename is delivered via file protocol (as opposed to http/https) |
| function isFileURI(filename) { |
| return filename.startsWith('file://'); |
| } |