s4s-editor / local-scratch-vm /test /fixtures /fake-bitmap-adapter.js
soiz1's picture
Upload 811 files
30c32c8 verified
raw
history blame
190 Bytes
const FakeBitmapAdapter = require('scratch-svg-renderer').BitmapAdapter;
FakeBitmapAdapter.prototype.resize = function (canvas) {
return canvas;
};
module.exports = FakeBitmapAdapter;