@dpkit/core
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
13 lines (12 loc) • 594 B
TypeScript
export declare function isRemotePath(path: string): boolean;
export declare function getName(filename?: string): string | undefined;
export declare function getProtocol(path: string): string;
export declare function getFormat(filename?: string): string | undefined;
export declare function getFilename(path: string): string | undefined;
export declare function getBasepath(path: string): string;
export declare function normalizePath(path: string, options: {
basepath?: string;
}): string;
export declare function denormalizePath(path: string, options: {
basepath?: string;
}): string;