New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-query-params

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-query-params

-----------

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

angular-query-params


An AngularJS service that wraps $location.search with own, simple methods

Codeship Status for ins87/angular-query-params

Installation

You can choose your preferred method of installation:

  • Through bower: bower install angular-query-params --save
  • Through npm: npm install angular-query-params --save
  • Download from github: unminified version or minified version

Usage

Include angular-query-params.js in your application.

<script src="components/angular-query-params/dist/angular-query-params.js"></script>

Add the module angularQueryParams as a dependency to your module:

angular.module('myApp', ['angularQueryParams']);

// Inject angularQueryParams into your controller (or service, etc..)
angular.module('myApp').controller('MyCtrl', function(queryParams) {
});

Add a query parameter to the url Always set value of a key

queryParams.set('key', 'value'); // => ?key=value
queryParams.set('key', ['value1', 'value2']); // => ?key=value1&key=value2

Get a query parameter from the url Always set value of a key

queryParams.get('key'); // ?key=value => 'value'
queryParams.set('key2'); // ?key=value => undefined

Remove a query parameter from the url

queryParams.remove('key', 'value'); // ?key=value&key2=value2 => ?key2=value2 , ?key=value&key=value2 => ?key=value
queryParams.remove('key', ['value1', 'value2']); // ?key=value1&key=value2&key=value3 => ?key=value3

Push a query parameter to the url Add a value to a key

queryParams.push('key', 'value'); // => ?key=value
queryParams.push('key', 'value2'); // ?key=value => ?key=value1&key=value2

Is a parameter set at the url (with a value)

queryParams.has('key'); // ?key=value => true
queryParams.has('key2'); // ?key=value => false
queryParams.has('key', 'value'); // ?key=value => true
queryParams.has('key', 'value2'); // ?key=value => false

License

Released under the terms of the MIT License.

FAQs

Package last updated on 09 Aug 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc