scratch-vm/test/fixtures/extract.js
Ray Schamp bafdf8d9f2 Use ES6 linting rules in the project root
Update all tests for `no-var` and `prefer-arrow-callback` (using `--fix`)
2017-04-24 15:37:58 -04:00

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');
};