UNPKG

rim-def

Version:

Programmatically declaring Defs, Patches, and About.

8 lines (6 loc) 233 B
import { mkdir, writeFile } from 'fs/promises' import { dirname } from 'path' export default async function write(path: string, content: string) { await mkdir(dirname(path), { recursive: true }) await writeFile(path, content) }