2 lines
142 B
JavaScript
2 lines
142 B
JavaScript
|
import { isBrowser } from "./is-browser.mjs";
|
||
|
export const isImageSupportNativeLazy = isBrowser && 'loading' in document.createElement('img');
|