mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 15:31:08 +00:00
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
|
import HTMLImageElement from './HTMLImageElement'
|
||
|
|
||
|
export default function() {
|
||
|
const image = wx.createImage();
|
||
|
|
||
|
// image.__proto__.__proto__.__proto__ = new HTMLImageElement();
|
||
|
|
||
|
return image;
|
||
|
};
|