Page MenuHomePhorge

maps.ex
No OneTemporary

Size
469 B
Referenced Files
None
Subscribers
None
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Maps do
def put_if_present(map, key, value, value_function \\ &{:ok, &1}) when is_map(map) do
with false <- is_nil(key),
false <- is_nil(value),
{:ok, new_value} <- value_function.(value) do
Map.put(map, key, new_value)
else
_ -> map
end
end
end

File Metadata

Mime Type
text/x-ruby
Expires
Thu, Oct 2, 2:49 AM (1 d, 4 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
474078
Default Alt Text
maps.ex (469 B)

Event Timeline