UNPKG

extendscript-bundlr

Version:

a tool for bundling Adobe ExtendScripts that use the `#include 'path/to/file'` statement

11 lines (10 loc) 192 B
import {statSync} from 'fs'; export function folderExists(directory) { try { statSync(directory); return true; } catch(e) { // fs.mkdirSync(directory); return false; } }