Skip to content

Instantly share code, notes, and snippets.

View jamesdiacono's full-sized avatar

James Diacono jamesdiacono

View GitHub Profile
@wohali
wohali / simple-view-no-null.erl
Created February 24, 2014 06:39
Simple Erlang views for CouchDB
%% this is an exact match for the original JS function
fun({Doc}) ->
case proplists:is_defined(<<"diet">>, Doc) of
true ->
Emit(proplists:get_value(<<"diet">>, Doc), 1);
false ->
ok
end
end.