mikaelvesavuori/figmagic

View on GitHub
bin/frameworks/filesystem/checkIfExists.ts

Summary

Maintainability
A
0 mins
Test Coverage
import fs from 'fs';

/**
 * @description Check if a file exists
 */
export const checkIfExists = (path: string): boolean => fs.existsSync(path);