mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-03-14 09:19:52 -04:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
var AdmZip = require('adm-zip');
|
|
|
|
module.exports = function (path) {
|
|
var zip = new AdmZip(path);
|
|
return zip.readAsText('project.json', 'utf8');
|
|
};
|