UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

12 lines (11 loc) 313 B
import fs from 'fs'; export default function exportToJDL(jdl, path = 'app.jdl') { if (!jdl) { throw new Error('A JDLObject has to be passed to be exported.'); } const fileContents = jdl.toString(); if (path) { fs.writeFileSync(path, fileContents); } return fileContents; }