Files
start-sdk/exists.ts
2022-06-29 11:20:34 -06:00

4 lines
230 B
TypeScript

import { Effects } from "./types.ts";
/** Used to check if the file exists before hand */
export const exists = (effects: Effects, props: { path: string, volumeId: string }) => effects.metadata(props).then(_ => true, _ => false);