UNPKG

@stangres/react-leaflet

Version:
11 lines (9 loc) 213 B
"use strict"; export default function pick(object, keys) { return keys.reduce(function (obj, key) { if (typeof object[key] !== 'undefined') { obj[key] = object[key]; } return obj; }, {}); }