UNPKG

@dotsoftware/vue-google-maps-community-fork

Version:

Google Maps components for VueJS 3 maintained by the community

16 lines (12 loc) 198 B
// lazy-value by sindresorhus export default (fn) => { let called = false let result return () => { if (!called) { called = true result = fn() } return result } }