mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 15:32:40 -05: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');
|
|
};
|