관리-도구
편집 파일: polyfills.js
if (!Promise.allSettled) { Promise.allSettled = function(promises) { return Promise.all(promises.map(p => p?.then( value => ({ status: 'fulfilled', value }), reason => ({ status: 'rejected', reason }) ) )); }; }