Skip to content

Instantly share code, notes, and snippets.

@tarlepp tarlepp/CsvService
Created Jan 4, 2016

Embed
What would you like to do?
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
You can’t perform that action at this time.