Page MenuHomePhorge

maps.ex
No OneTemporary

Size
469 B
Referenced Files
None
Subscribers
None
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 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, 4:36 AM (20 h, 33 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
443728
Default Alt Text
maps.ex (469 B)

Event Timeline