newscoop/JS-Scoopwriter

View on GitHub
app/scripts/services/get-file-reader.js

Summary

Maintainability
A
35 mins
Test Coverage
'use strict';
/* the file reader is wrapped in a service just in order to mock it easily */
angular.module('authoringEnvironmentApp').factory('getFileReader',
    function () {
        return {
            get: function() {
                return new FileReader();
            }
        };
    }
);