Skip to content

v0.10.0

Compare
Choose a tag to compare
@angeloashmore angeloashmore released this 01 Jul 22:14
· 7 commits to master since this release

Breaking Changes

  • Component#toBlob

    Throws IncompatiblePlatformError if Blob 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 used Component#toBlob to generate the base64 encoded string, but it now uses a Buffer in Node.js or window.btoa in the browser.

Other Changes

  • Change lodash dependency to lodash.difference for quicker installation.