UNPKG

react-google-maps

Version:
10 lines (8 loc) 237 B
function exposeGetters (component, prototype, instance) { for (let key in prototype) { if (key.match(/^get/) && !key.match(/Map$/)) { component[key] = instance[key].bind(instance); } } }; export default exposeGetters;