Current section

Files

Jump to
diint_utilites_common_app src utilites json_utilites.erl
Raw

src/utilites/json_utilites.erl

%%%-------------------------------------------------------------------
%%% @author cheese
%%% @copyright (C) 2016, <COMPANY>
%%% @doc
%%%
%%% @end
%%% Created : 27. May 2016 9:49
%%%-------------------------------------------------------------------
-module(json_utilites).
-author("cheese").
%% API
-export([get_object_from_json/2]).
get_object_from_json([{ParamName, Value} | _OtherJson], ParamName) ->
Value;
get_object_from_json([{_Name, _Value} | OtherJson], ParamName) ->
get_object_from_json(OtherJson, ParamName);
get_object_from_json(_Other, _ParamName) ->
undefined.