mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
bafdf8d9f2
Update all tests for `no-var` and `prefer-arrow-callback` (using `--fix`)
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');
|
|
};
|