UNPKG
@20minutes/draft-convert
Version:
latest (3.1.3)
3.1.3
3.1.2
3.1.1
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
Extensibly serialize & deserialize Draft.js ContentState
20minutes/draft-convert
@20minutes/draft-convert
/
dist
/
util
/
styleObjectFunction.mjs
7 lines
(6 loc)
•
163 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
default
(
(
object
)=>
(
style
)=>
{
if
(
typeof
object
===
'function'
) {
return
object
(style); }
return
object
[style]; });