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