UNPKG

angular-file-saver

Version:

An AngularJS service that implements the HTML5 W3C saveAs() in browsers that do not natively support it

12 lines (8 loc) 255 B
'use strict'; module.exports = function Blob($window, FileSaverUtils) { var blob = $window.Blob; if (FileSaverUtils.isUndefined(blob)) { FileSaverUtils.handleErrors('Blob is not supported. Please include blob polyfilll'); } return blob; };