Note: This feature is available in Web Workers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The initialize() method of the CrashReportContext interface initializes a portion of memory to be used for storing crash report data specified by set(). This must be called before any other method is invoked on the object.
initialize(length)lengthA number indicating the maximum number of bytes that can be stored in the key-value store by each individual set() call. The maximum allowable value is 65536 (64KB), which is also the maximum amount of crash report memory allowed for one origin.
A Promise that fulfills with undefined.
InvalidStateError DOMExceptionThrown if:
initialize() call.NotAllowedError DOMExceptionlength is more than 65536.
window.crashReport.initialize(1024).then(() => {
// Do stuff with crash reporting API
});