perf(@vant/lazyload): remove CustomEvent polyfill (#9589)

This commit is contained in:
neverland 2021-09-29 17:31:05 +08:00 committed by GitHub
parent e8186795b7
commit 7aba794d80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 21 deletions

View File

@ -1,7 +1,6 @@
import { nextTick } from 'vue'; import { nextTick } from 'vue';
import { import {
inBrowser, inBrowser,
CustomEvent,
remove, remove,
find, find,
_, _,

View File

@ -11,25 +11,6 @@ export const modeType = {
observer: 'observer', observer: 'observer',
}; };
// CustomEvent polyfill
const CustomEvent = (function () {
if (!inBrowser) return;
if (typeof window.CustomEvent === 'function') return window.CustomEvent;
function CustomEvent(event, params) {
params = params || { bubbles: false, cancelable: false, detail: undefined };
const evt = document.createEvent('CustomEvent');
evt.initCustomEvent(
event,
params.bubbles,
params.cancelable,
params.detail
);
return evt;
}
CustomEvent.prototype = window.Event.prototype;
return CustomEvent;
})();
function remove(arr, item) { function remove(arr, item) {
if (!arr.length) return; if (!arr.length) return;
const index = arr.indexOf(item); const index = arr.indexOf(item);
@ -284,7 +265,6 @@ class ImageCache {
export { export {
ImageCache, ImageCache,
inBrowser, inBrowser,
CustomEvent,
remove, remove,
find, find,
noop, noop,