mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-03-08 13:37:55 -05:00
6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
const AdmZip = require('adm-zip');
|
|
|
|
module.exports = function (path) {
|
|
const zip = new AdmZip(path);
|
|
return zip.readAsText('project.json', 'utf8');
|
|
};
|