Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
make-dir.ts 174 B
import fs from "fs";

export function makeDir(
  root: string,
  options = { recursive: true },
): Promise<string | undefined> {
  return fs.promises.mkdir(root, options);
}