UNPKG

angular-http-case-converter

Version:

A module providing simple way to convert request params and response body of backend requests

18 lines (15 loc) 516 B
/** * @author Jarek Rencz <jarek.rencz@laboratorium.ee> - current implementation * @author Michał Gołębiowski <michal.golebiowski@laboratorium.ee> - original idea * @author Mikołaj Dądela <mikolaj.dadela@laboratorium.ee> - object converter code * * (c) Laboratorium EE 2014 */ (function () { 'use strict'; angular .module('ee.$http.CaseConverter', [ 'ee.$http.CaseConverter.request.camelToSnake', 'ee.$http.CaseConverter.response.snakeToCamel', ]); })();