v0.10.0
Breaking Changes
-
Component#toBlob
Throws
IncompatiblePlatformError
ifBlob
is undefined. Blob is available in the browser, but not in Node.js, unless a polyfill is provided. -
Component#toBase64
Returns a string rather than a
Promise
. The previous implementation usedComponent#toBlob
to generate the base64 encoded string, but it now uses aBuffer
in Node.js orwindow.btoa
in the browser.
Other Changes
- Change
lodash
dependency tolodash.difference
for quicker installation.