# qs-hash **Repository Path**: mirrors_mapbox/qs-hash ## Basic Information - **Project Name**: qs-hash - **Description**: encode and decode querystrings - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-10-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://travis-ci.org/mapbox/qs-hash.png)](https://travis-ci.org/mapbox/qs-hash) # qs-hash A simple querystring encoder and decoder, with an option to skip encoding URL components if you're going to use the encoded strings in URL hashes rather than the path segment. As seen in [iD](https://github.com/systemed/iD) and [geojson.io](http://geojson.io/). ## usage npm install --save qs-hash ## api ### `qsString(object, noencode)` Encode an object to a string, `noencode` decides whether it skips encoding ### `stringQs(string)` Decode a string to an object.