uni-ticket-system/node_modules/licia/loadImg.js

15 lines
275 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
var noop = require('./noop');
exports = function(src, cb) {
cb = cb || noop;
var img = new Image();
img.onload = function() {
cb(null, img);
};
img.onerror = function(err) {
cb(err);
};
img.src = src;
};
module.exports = exports;