UNPKG
@mapwhit/style-expressions
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.0
0.0.2
0.0.1
Process expressions in map style.
github.com/mapwhit/style-expressions
mapwhit/style-expressions
@mapwhit/style-expressions
/
lib
/
util
/
get_own.js
4 lines
(3 loc)
•
111 B
JavaScript
View Raw
1
2
3
4
export
default
function
getOwn
(
object
, key
) {
return
Object
.
hasOwn
(
object
, key) ?
object
[key] :
undefined
; }