UNPKG

v3mt

Version:

A CLI toolkit for managing and deploying Victoria 3 mods, including sending mod files to the game, launching the game, and more.

8 lines (7 loc) 173 B
import fs from 'fs'; export default function ensureDirSync(path) { if (!fs.existsSync(path)) { fs.mkdirSync(path, { recursive: true }); } return path; }