mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-10-30 04:25:24 +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;
|
||
|
|
};
|