penguinmod-vm-prain / test /fixtures /fake-bitmap-adapter.js
soiz1's picture
Upload folder using huggingface_hub
76cc654 verified
raw
history blame contribute delete
190 Bytes
const FakeBitmapAdapter = require('scratch-svg-renderer').BitmapAdapter;
FakeBitmapAdapter.prototype.resize = function (canvas) {
return canvas;
};
module.exports = FakeBitmapAdapter;