Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7892979
maps.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
612 B
Referenced Files
None
Subscribers
None
maps.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 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
def
safe_put_in
(
data
,
keys
,
value
)
when
is_map
(
data
)
and
is_list
(
keys
)
do
Kernel
.
put_in
(
data
,
keys
,
value
)
rescue
_
->
data
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Thu, Oct 2, 4:44 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
479884
Default Alt Text
maps.ex (612 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment