* @param {string} path File path to test for within the archive. * @return {boolean} Whether this zip archive contains an entry with the given * path.
(path)
| 94 | * path. |
| 95 | */ |
| 96 | has(path) { |
| 97 | return this.z_.file(path) !== null |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Returns the contents of the file in this zip archive with the given `path`. |