LoicMahieu / change-url

Tiny module to modify an URL string

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

change-url

Tiny module to modify any part of an URL:

changeUrl('/abc?foo=biz', url => ({
  ...url,
  query: {
    ...url.query,
    added: 'baz',
  },
}))
// ==> abc?foo=biz&added=baz

Install

npm install change-url

About

Tiny module to modify an URL string


Languages

Language:TypeScript 100.0%