UNPKG

@nomadmystic/wordpress-scaffold-cli

Version:

This project is created to speed up WordPress development

14 lines (13 loc) 354 B
import fs from 'fs'; export default class FileUtils { static getFileAsJson = async (path) => { try { const fileString = fs.readFileSync(`${path}`, 'utf8'); return JSON.parse(fileString); } catch (err) { console.log('getPackageVersion()'); console.error(err); } }; }