npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

places-autocomplete-svelte

v2.2.25

Published

A flexible, accessible, and secure Svelte component leveraging the Google Maps Places Autocomplete API (New). Winner of the Google Maps Platform Awards 2025, recognising excellence in Google Maps Platform development.

Readme

Places (New) Autocomplete Svelte

npm version npm downloads License: MIT Google Maps Platform Awards 2025

A flexible, accessible, and secure Svelte 5 component leveraging the Google Maps Places Autocomplete API (New). Winner of the Google Maps Platform Awards 2025, recognising excellence in Google Maps Platform development.

The component handles API loading, session tokens, debounced fetching, and accessibility, allowing you to focus on building your application. It intelligently manages the Google Maps API loader, creating a shared instance via Svelte's context that prevents conflicts with other map components on the same page.

Two initialisation patterns:

  • Simple/Automatic: Pass your API key directly to the component for basic use cases
  • Advanced/Manual: Initialise the loader once in a parent component when using multiple Google Maps libraries or components

Table of Contents

Features

Core Functionality

  • 🗺️ Integrates with the modern Google Maps Places Autocomplete API (New)
  • 🔄 Automatic Shared Loader: Intelligently creates a single Google Maps loader instance and shares it via Svelte's context
  • 💰 Automatically handles session tokens for optimal cost management
  • Debounced Input: Configurable delay to minimise API calls while typing
  • Suggestion Highlighting: Automatically highlights matched text in suggestions
  • 🌍 Internationally Neutral: No default regional restrictions - works globally out of the box

Accessibility & User Experience

  • WCAG Compliant: Follows WAI-ARIA patterns for comboboxes
  • ⌨️ Full Keyboard Navigation: Arrow keys, Enter, and Escape support
  • 📢 Screen Reader Support: Proper ARIA attributes for assistive technologies

Developer Experience

  • 🎨 Customisable Styling: Override default styles via options.classes prop
  • 🔧 Imperative API: Direct control with clear(), focus(), getRequestParams(), setRequestParams(), setFetchFields(), getFetchFields(), and setInputValue() methods
  • 📘 TypeScript Support: Fully typed with comprehensive type definitions
  • 🔐 Secure: XSS protection with safe rendering of suggestions
  • 🎯 Event Handling: onResponse and onError callbacks for complete control

Demo

Explore live examples showcasing different features and use cases:

🚀 Basic Example - Get started with the simplest implementation

🔄 Reactive Parameters - Dynamically change search criteria based on user input, such as filtering by country or switching languages

⚙️ Checkout Form - Capture the detailed address data from a user's selection and use it to automatically populate the fields of a checkout form.

📝 Distance & Proximity Filter - Restrict or bias search results to a specific area.

Recognition

🏆 Google Maps Platform Awards 2025 Winner

This component has been recognised as a winner of the Google Maps Platform Awards 2025 by the Google Developer Program. This award celebrates outstanding projects that demonstrate exceptional use of Google Maps Platform APIs, innovation, and contribution to the developer community.

Learn more about the Google Maps Platform Awards →

Requirements

  • Svelte 5+ - This component requires Svelte 5.0.0 or higher and uses Svelte 5 features including runes ($state, $derived, etc.)
  • Google Maps API Key with the "Places API" enabled. Refer to Use API Keys for detailed instructions.

Installation

npm install places-autocomplete-svelte
# or
yarn add places-autocomplete-svelte
# or
pnpm add places-autocomplete-svelte

Usage

Basic Usage (Automatic Initialisation)

For simple use cases, just pass your API key to the component. It will automatically handle the Google Maps loader initialisation:

<script lang="ts">
    import { PlaceAutocomplete } from 'places-autocomplete-svelte';
    import type { PlaceResult } from 'places-autocomplete-svelte/interfaces';

    // Get API Key securely (e.g., from environment variables)
    const PUBLIC_GOOGLE_MAPS_API_KEY = import.meta.env.VITE_PUBLIC_GOOGLE_MAPS_API_KEY;

    // Optional: Set regional preferences (component works globally by default)
    const requestParams = {
        language: 'en-US',      // Set language preference
        region: 'US',           // Set regional bias
        // includedRegionCodes: ['US', 'CA'] // Restrict to specific regions
    };

    // Optional: Configure UI and behaviour
    const options = {
        show_place_type: true,     // Show place type icons
        distance: true,            // Show distance (if origin provided)
        response_type: 'json',     // Return JSON object (default)
        placeholder: 'Search for places...'
    };

    const handleResponse = (response: PlaceResult) => {
        console.log('Selected:', response.formattedAddress);
    };

    const handleError = (error: string) => {
        console.error('Error:', error);
    };
</script>

<PlaceAutocomplete 
    {PUBLIC_GOOGLE_MAPS_API_KEY}
    {requestParams}
    {options}
    onResponse={handleResponse} 
    onError={handleError} 
/>

Advanced Usage (Manual Initialisation)

For applications using multiple Google Maps libraries (e.g., places, maps, marker) or multiple map components, initialise the loader once in a parent component.

Benefits:

  • ✅ Loads all required libraries in a single API call (more efficient)
  • ✅ Prevents "Loader must not be called again" errors
  • ✅ Shares the loader instance across all child components via Svelte context
  • ✅ Works seamlessly with SvelteKit's SSR (only initialises in the browser)

When to use manual initialisation:

  • Multiple Google Maps components on the same page
  • Multiple libraries needed (maps, marker, geometry, etc.)
  • Shared map functionality across routes
  • Centralised error handling for the loader
// In +layout.svelte or +page.svelte
<script lang="ts">
    import { browser } from '$app/environment';
    import { PlaceAutocomplete } from 'places-autocomplete-svelte';
    import { setGMapsContext, initialiseGMaps, importLibrary } from 'places-autocomplete-svelte/gmaps';
    import { onMount } from 'svelte';
    import type { PlaceResult } from 'places-autocomplete-svelte/interfaces';

    // 1. Set the context at the top level (must be synchronous)
    setGMapsContext();

    // 2. Initialise the loader in the browser
    if (browser) {
        initialiseGMaps({
            key: import.meta.env.VITE_PUBLIC_GOOGLE_MAPS_API_KEY,
            v: 'weekly'
        }).catch((error) => {
            console.error('Failed to initialise Google Maps:', error);
        });
    }

    // 3. Load additional libraries as needed
    let map: google.maps.Map;
    
    onMount(async () => {
        const { Map } = await importLibrary('maps');
        const mapElement = document.getElementById('map');
        if (mapElement) {
            map = new Map(mapElement, {
                center: { lat: 51.5072, lng: -0.1276 },
                zoom: 10,
                mapId: 'YOUR_MAP_ID'
            });
        }
    });

    // 4. Handle autocomplete responses
    const handleResponse = (response: PlaceResult) => {
        console.log('Selected:', response.formattedAddress);
        if (response.location && map) {
            map.setCenter(response.location);
            map.setZoom(15);
        }
    };

    const handleError = (error: string) => {
        console.error('Error:', error);
    };
</script>

<!-- The component automatically uses the shared context -->
<!-- No need to pass PUBLIC_GOOGLE_MAPS_API_KEY when using manual initialisation -->
<PlaceAutocomplete 
    onResponse={handleResponse} 
    onError={handleError} 
/>

<div id="map" class="h-96 w-full"></div>

Available helper functions from places-autocomplete-svelte/gmaps:

  • setGMapsContext() - Creates the shared context (call once at the top level)
  • getGMapsContext() - Retrieves the context (returns stores for initialisation state and errors)
  • hasGMapsContext() - Checks if context exists (useful for conditional logic)
  • initialiseGMaps(options) - Initialises the loader with your API key and options
  • initialiseGMapsNoContext(options) - Initialises without context (for edge cases)
  • importLibrary(library) - Dynamically imports Google Maps libraries

API Reference

The following sections detail the component's props, methods, options, and events.

Security

API Key Security

Your Google Maps API Key is a sensitive credential. To prevent unauthorised use and unexpected charges, you must restrict it.

  1. Go to the Google Cloud Console.
  2. Select your API key.
  3. Under Application restrictions, select HTTP referrers (web sites) and add your application's domain(s) (e.g., your-domain.com/*).
  4. Under API restrictions, select Restrict key and choose the APIs you are using (e.g., Places API, Maps JavaScript API).

XSS Protection

This component is designed to be secure out-of-the-box. It safely renders user-input and API responses to prevent Cross-Site Scripting (XSS) vulnerabilities.

Accessibility

This component is built to be accessible and follows the WAI-ARIA Authoring Practices for a Combobox.

  • Keyboard Navigation: Users can navigate suggestions using ArrowUp, ArrowDown, select with Enter, and close the list with Escape.
  • Screen Reader Support: Uses role="combobox", aria-autocomplete, aria-expanded, and aria-activedescendant to provide a clear experience for screen reader users.
  • Focus Management: Focus remains on the input field while navigating the suggestion list.

Props

| Prop | Type | Required | Default | Description | | :--- | :--- | :--- | :--- | :--- | | PUBLIC_GOOGLE_MAPS_API_KEY | string | No* | - | Your Google Maps API Key. Required for automatic initialisation. Optional if you've initialised the loader in a parent component using initialiseGMaps(). | | onResponse | (response: PlaceResult) => void | Yes | - | Callback triggered when a user selects a place. Receives the full place details object. | | onError | (error: string) => void | Yes | - | Callback triggered when an error occurs (API loading, network issues, etc.). | | fetchFields | string[] | No | ['formattedAddress', 'addressComponents'] | Place Data Fields to request from the API. See Place Data Fields. Affects API billing. | | requestParams | Partial<RequestParams> | No | { inputOffset: 0 } | Parameters for the Autocomplete API request. By default, the component is internationally neutral (no default language or region), allowing the Google Maps API to use browser settings and IP-based location detection. You can specify parameters like language, region (for biasing results), or includedRegionCodes (for filtering results) to customize behaviour. See the RequestParams interface for all options. | | options | Partial<ComponentOptions> | No | { debounce: 100 } | UI and behaviour options (placeholder, debounce delay, distance display, custom classes, etc.). See ComponentOptions interface. |

*Either PUBLIC_GOOGLE_MAPS_API_KEY prop OR manual initialisation with initialiseGMaps() is required.

Component Methods (Imperative API)

Get a reference to the component instance using bind:this to call its methods directly.

Example (Svelte 5 syntax):

<script lang="ts">
    import PlaceAutocomplete from 'places-autocomplete-svelte';
    // Note: Using Svelte 5 $state rune
    let autocompleteComponent: PlaceAutocomplete | undefined = $state(undefined);
</script>

<PlaceAutocomplete bind:this={autocompleteComponent} ... />

<button onclick={() => autocompleteComponent?.clear()}>Clear</button>
<button onclick={() => autocompleteComponent?.focus()}>Focus</button>
<button onclick={() => autocompleteComponent?.setRequestParams({ region: 'FR', language: 'fr' })}>
    Switch to French
</button>
<button onclick={() => autocompleteComponent?.setOptions({ placeholder: 'Search locations...', debounce: 300 })}>
    Update Options
</button>
<button onclick={() => autocompleteComponent?.setInputValue(48.8584, 2.2945)}>
    Set to Eiffel Tower
</button>

| Method | Signature | Description | | :--- | :--- | :--- | | clear() | () => void | Clears the input, removes suggestions, and resets the session token. | | focus() | () => void | Sets focus on the text input field. | | getRequestParams() | () => RequestParams | Returns the current internal requestParams object. | | setRequestParams(params) | (params: Partial<RequestParams>) => void | Dynamically updates request parameters. Useful for changing search criteria (region, language, location bias, etc.). Parameters are merged with existing ones. | | setFetchFields(fields) | (fields: string[]) => void | Dynamically updates the Place Data Fields to fetch when a place is selected. | | getFetchFields() | () => string[] | Returns the current array of Place Data Fields that will be requested. | | setOptions(options) | (options: Partial<ComponentOptions>) => void | Dynamically updates the component's configuration options. Merges the provided options with existing settings. | | getOptions() | () => ComponentOptions | Returns the current validated options used by the component. Useful for inspecting configuration settings. | | setInputValue(latitude, longitude) | (latitude: number, longitude: number) => Promise<void> | Sets the input by finding and selecting a place for the given coordinates. Performs reverse geocoding to convert lat/lng to a place, then triggers onResponse. Requires Geocoding API to be enabled. |

Reverse Geocoding with setInputValue

The setInputValue method allows you to programmatically set a location by coordinates, useful for integrating with geolocation APIs or map click events:

// Example: Set location from user's current position
navigator.geolocation.getCurrentPosition(async (position) => {
    try {
        await autocompleteComponent.setInputValue(
            position.coords.latitude,
            position.coords.longitude
        );
        console.log('Location set successfully');
    } catch (error) {
        console.error('Failed to set location:', error);
    }
});

// Example: Set specific landmark (Eiffel Tower)
await autocompleteComponent.setInputValue(48.8584, 2.2945);

Important: This method requires the Geocoding API to be enabled in your Google Cloud Console project. The method:

  1. Performs reverse geocoding to convert coordinates to a place
  2. Fetches place details using your configured fetchFields
  3. Triggers the onResponse callback with the place data
  4. Updates the input field (respects clear_input option)

Advanced Response Handling

Response Types

Control the format of data returned by the onResponse callback using the response_type option:

JSON Format (Default):

const options = {
    response_type: 'json' // Default
};

const handleResponse = (response: PlaceResult) => {
    console.log(response.formattedAddress);      // "123 Main St, City, Country"
    console.log(response.location);              // { lat: 40.7128, lng: -74.0060 }
    console.log(response.addressComponents);     // Array of address components
};

Google Maps Place Instance:

const options = {
    response_type: 'place'
};

const handleResponse = (place: google.maps.places.Place) => {
    // Access to full Place API methods
    console.log(place.formattedAddress);
    console.log(place.location);
    
    // Access photos (if fetchFields includes 'photos')
    const photos = place.photos;
    if (photos && photos.length > 0) {
        const photoUrl = photos[0].getURI({ maxHeight: 1200 });
        console.log('Photo URL:', photoUrl);
    }
    
    // Convert to JSON when needed
    const jsonData = place.toJSON();
    console.log('JSON format:', jsonData);
};

Place Type Icons

Enable visual categorisation of suggestions with place type icons:

const options = {
    show_place_type: true,
    distance: false,  // Must be false when using place type icons
    fetchFields: ['formattedAddress', 'primaryType'] // Ensure primaryType is included
};

Important: show_place_type and distance are mutually exclusive - only one can be enabled at a time. When show_place_type is true, the distance display is automatically disabled.

This displays categorized icons (🏪 Shopping, 🍽️ Dining, 🏨 Lodging, etc.) on the right side of each suggestion, helping users quickly identify the type of place.

Options

| Option | Type | Default | Description | | :--- | :--- | :--- | :--- | | placeholder | string | '' | Placeholder text for the input field. | | debounce | number | 100 | Delay in ms before firing API request. Set to 0 to disable. | | distance | boolean | false | Show distance from requestParams.origin (if provided). Mutually exclusive with show_place_type. | | distance_units | 'km' \| 'miles' | 'km' | Units for displaying distance. | | label | string | '' | Optional label text displayed above the input. | | autofocus | boolean | false | Automatically focus the input on mount. | | autocomplete | string | 'off' | The autocomplete attribute for the input field. | | classes | Partial<ComponentClasses> | {} | Object to override default CSS classes. See Styling section. | | clear_input | boolean | true | If false, retains the formattedAddress in the input after selection. | | response_type | 'json' \| 'place' | 'json' | Return format: 'json' for JSON object (.toJSON()), 'place' for Google Maps Place instance with access to methods like .getPhotos(). | | show_place_type | boolean | false | Display place type icons (shopping, dining, etc.) on the right side of suggestion items. Mutually exclusive with distance. |

Styling

Default Styles

The component includes built-in styles with .pac- prefixed CSS classes, providing a complete, accessible UI out of the box. These styles are:

  • Framework-agnostic: Pure CSS with no dependencies on Tailwind or other frameworks
  • Modern design: Clean, professional appearance with proper spacing, shadows, and hover effects
  • Fully functional: Includes keyboard navigation indicators, loading states, and responsive behaviour
  • Customisable: All styles can be overridden via the options.classes prop

The default styles include:

  • Rounded input with shadow and focus states
  • Dropdown list with scroll behaviour and dividers
  • Keyboard navigation hints (Esc, ↑, ↓)
  • Highlighted current selection with colour transitions
  • Distance display for location-based results
  • Icon support with proper alignment
  • Responsive layout for mobile and desktop

Customisation (options.classes)

Override any default styling by providing your own CSS classes via options.classes. Your custom classes will replace the default .pac- classes for the specified elements.

Available Class Keys:

  • section: The main container section (default: .pac-section)
  • container: The div containing the input and suggestions list (default: .pac-container)
  • label: The label element
  • input: The main text input element (default: .pac-input)
  • icon_container: Container for the optional icon (default: .pac-icon-container)
  • icon: SVG string for the icon
  • ul: The <ul> element for the suggestions list (default: .pac-ul)
  • li: Each <li> suggestion item (default: .pac-li)
  • li_current: Class added to the currently highlighted <li> (default: .pac-li-current)
  • li_button: The <button> within each list item (default: .pac-li-button)
  • li_button_current: Class added to the currently highlighted button (default: .pac-li-button-current)
  • li_div_container: Container div within each list item (default: .pac-li-div-container)
  • li_div_one: First inner div containing the main text (default: .pac-li-div-one)
  • li_div_one_p: The <p> tag containing the main suggestion text (default: .pac-li-div-one-p)
  • li_div_one_p_secondaryText: The <p> tag for secondary text (default: .pac-li-div-one-p-secondaryText)
  • li_div_p_container: Container for paragraphs (default: .pac-li-div-p-container)
  • li_div_two: Second inner div containing the distance (default: .pac-li-div-two)
  • li_div_two_p: The <p> tag containing the distance text (default: .pac-li-div-two-p)
  • li_div_two_p_place_type: Container for place type display (default: .pac-li-div-two-p-place_type)
  • li_div_two_p_place_type_icon: The place type icon element (default: .pac-li-div-two-p-place_type-icon)
  • li_div_two_p_place_type_label: The place type label text (default: .pac-li-div-two-p-place_type-label)
  • kbd_container: Container for the keyboard hint keys (default: .pac-kbd-container))
  • kbd_escape: The <kbd> tag for the 'Esc' hint (default: .pac-kbd-escape)
  • kbd_up: The <kbd> tag for the 'Up Arrow' hint (default: .pac-kbd-up)
  • kbd_down: The <kbd> tag for the 'Down Arrow' hint (default: .pac-kbd-down)
  • kbd_active: Class applied to active keyboard hints (default: .pac-kbd-active)
  • map_pin_icon: SVG string for the map pin icon
  • highlight: The class applied to the <span> wrapping the matched text (default: .pac-highlight)

Example - Using with Tailwind CSS:

const options = {
  classes: {
    input: 'w-full px-4 py-2.5 border border-gray-300 rounded-md focus:ring-2 focus:ring-blue-500',
    ul: 'absolute mt-1 w-full bg-white shadow-lg rounded-md border border-gray-200 max-h-60 overflow-auto',
    li: 'px-4 py-2 hover:bg-blue-500 hover:text-white cursor-pointer',
    li_current: 'bg-blue-500 text-white',
    highlight: 'font-semibold text-blue-700',
    // Place type styling
    li_div_two_p_place_type: 'flex items-center gap-1 text-gray-500',
    li_div_two_p_place_type_icon: 'w-4 h-4',
    li_div_two_p_place_type_label: 'text-xs font-medium'
  }
};

Example - Using with Custom CSS:

const options = {
  classes: {
    section: 'autocomplete-wrapper',
    input: 'search-input',
    ul: 'suggestions-list',
    li: 'suggestion-item',
    li_current: 'suggestion-item--active'
  }
};

Events

  • onResponse: (response: PlaceResult) => void
    • Fired after a user selects a suggestion and fetchFields are retrieved.
  • onError: (error: string) => void
    • Fired on any error (API loading, fetching suggestions, etc.).

TypeScript

This component is fully written in TypeScript with comprehensive type definitions.

Available Imports

Component:

import { PlaceAutocomplete } from 'places-autocomplete-svelte';

Types and Interfaces:

import type { 
    PlaceResult,       // Place data returned from API
    ComponentOptions,  // UI and behaviour configuration
    RequestParams,     // Autocomplete request parameters
    FormattedAddress,  // Standardised address structure
    ComponentClasses,  // CSS class overrides
    Props              // Component props
} from 'places-autocomplete-svelte/interfaces';

Google Maps Loader Helpers:

import { 
    setGMapsContext,           // Create shared context
    getGMapsContext,           // Retrieve context
    hasGMapsContext,           // Check if context exists
    initialiseGMaps,           // Initialise with context
    initialiseGMapsNoContext,  // Initialise standalone
    importLibrary,             // Load Google Maps libraries
    type GMapsContext,         // Context type
    type APIOptions            // Loader options type
} from 'places-autocomplete-svelte/gmaps';

Google Places API & Billing

  • This component uses the Google Maps JavaScript API (Places library). Usage is subject to Google's terms and pricing.
  • Session Tokens are used automatically to group Autocomplete requests, which can reduce costs.
  • Place Details requests (via fetchFields) are billed separately. Only request the fields you need to manage costs effectively.
  • For detailed pricing information, see Google Maps Platform Pricing.

Troubleshooting

Common issues and how to resolve them:

No Suggestions Appear / "This API project is not authorised..."

This is typically an issue with your Google Maps API key.

  • Check API Key Restrictions: Ensure your key is correctly restricted. For web use, you should have an HTTP referrer restriction matching your website's domain (e.g., yourdomain.com/*). For local development, you might need to add localhost:* or your specific local server address.
  • Enable APIs: In the Google Cloud Console, make sure you have enabled both the Places API and the Maps JavaScript API for your project. The setInputValue() method also requires the Geocoding API.
  • Enable Billing: Your Google Cloud project must have a valid billing account attached.
  • Check for Errors: Open your browser's developer console and check for any error messages from the Google Maps script.

"Loader must not be called again" Error

This error occurs when you have multiple Google Maps components on the same page (or across different routes in a SvelteKit app) and each one tries to initialize the Google Maps loader independently.

Solution: Use the Advanced Usage (Manual Initialisation) pattern.

  1. Call setGMapsContext() once in a shared parent component (like +layout.svelte).
  2. Call initialiseGMaps() once in the same parent component, inside a if (browser) block.
  3. The PlaceAutocomplete component (and any other Google Maps components) will then automatically use the shared loader instance, preventing the error.

Component or Styles Not Loading Correctly

  • Check Installation: Make sure the places-autocomplete-svelte package is correctly installed in your node_modules.
  • SvelteKit / Vite Config: Ensure your bundler is correctly processing Svelte components from node_modules. This is usually handled automatically.
  • CSS Conflicts: If the styling looks broken, you may have global styles that are conflicting with the component's default .pac- classes. You can either debug the conflicting styles or use the options.classes prop to replace the default classes with your own (e.g., Tailwind CSS classes), giving you full control over styling.

Standalone JavaScript Library

Need this functionality for a non-Svelte project? Check out our companion vanilla JavaScript library:

places-autocomplete-js - Same core Google Places (New) Autocomplete features, framework-agnostic implementation.

Contributing

Contributions are welcome! We appreciate bug reports, feature requests, and pull requests.

How to contribute:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Please ensure your code follows the existing style and includes appropriate tests.

Author

Alexander Pechkarev

License

This project is licensed under the MIT License - see the LICENSE file for details.