2024-01-29 09:26:07 +08:00

6 lines
271 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isImageSupportNativeLazy = void 0;
const is_browser_1 = require("./is-browser");
exports.isImageSupportNativeLazy = is_browser_1.isBrowser && 'loading' in document.createElement('img');