Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/zipjs/index.d.ts>ZipDirectoryEntry#getChildByName

JavaScript library to zip and unzip files supporting multi-core compression, compression streams, zip64, split files and encryption.
Latest
method ZipDirectoryEntry.prototype.getChildByName
import { ZipDirectoryEntry } from "https://deno.land/x/zipjs@v2.7.45/index.d.ts";

Gets a ZipEntry child instance from its relative filename

Parameters

name: string

The relative filename.

Returns

ZipEntry | undefined

A ZipFileEntry or a ZipDirectoryEntry instance (use the ZipFileEntry#directory and ZipDirectoryEntry#directory properties to differentiate entries).