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 and encryption.
Go to Latest
method ZipDirectoryEntry.prototype.getChildByName
import { ZipDirectoryEntry } from "https://deno.land/x/zipjs@v2.6.51/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).