| app.factory('csvService', CsvService); | |
| CsvService.$inject = ['$http']; | |
| function CsvService($http) { | |
| return { | |
| get: get | |
| }; | |
| function get(url) { | |
| return $http.get(url).then(function(response){ | |
| return CSV2JSON(response.data); | |
| }); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment