Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.09 KB

README.md

File metadata and controls

32 lines (24 loc) · 1.09 KB

Get Location With Timeout

semantic-release JavaScript Style Guide ts code style: prettier License: MIT

Wrapper for navigator.geolocation.getCurrentPosition with ensure rejected the promise when timeout

Installation

yarn add get-location-with-timeout

Usage

import getCurrentLocationWithTimeout, { TimeoutError } from 'get-location-with-timeout'

try {
    const { coords } = await getCurrentLocationWithTimeout()

    // logic
} catch (error) {
    if (error instanceof TimeoutError) {
        // handle timeout logic
    } else {
        // handle other reject logic
    }
}