UNPKG

auth0-lock

Version:
19 lines (17 loc) 432 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.img = img; function img(src) { var cb = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {}; var img = document.createElement('img'); img.addEventListener('load', function () { cb(null, img); }); img.addEventListener('error', function (event) { cb(event); }); img.src = src; return img; }