UNPKG

@santerzet/botkit

Version:

CLI for Discord Bot

7 lines (6 loc) 233 B
import { fromAsync, isOk } from '@sapphire/result'; import { access } from 'node:fs/promises'; export async function fileExists(filePath) { const result = await fromAsync(() => access(filePath)); return isOk(result); }