0.0.20 • Published 2 years ago
@firecamp/url v0.0.20
URL Utility
Usage
Update URL on update raw string
import _url from '@firecamp/url'
// parse query, path params from raw URL and return URL Object
// with updated params table
state.urlObj = _url.updateByRaw(state.urlObj)
Update URL on update query from table
import _url from '@firecamp/url'
// Return URL object by updating query into raw URL from table
const { raw } = _url.updateByQuery(state.urlObj)
// Update raw URL into state
state.urlObj.raw = raw
Parse URL
import _url from '@firecamp/url'
// Parse URL string, require at the time of request execution
_url.parse('google.com', ['http', 'https])
// return http://google.com
Replace Path Params value
import _url from '@firecamp/url'
// Parse URL string, require at the time of request execution
_url.replacePathParams('http://localhost:3000/:id', [{ key: 'id', value: '1' }])
// return http://localhost:3000/1
0.0.20
2 years ago
0.0.18
2 years ago
0.0.19
2 years ago
0.0.15
3 years ago
0.0.16
3 years ago
0.0.17
3 years ago
0.0.10
3 years ago
0.0.11
3 years ago
0.0.12
3 years ago
0.0.13
3 years ago
0.0.14
3 years ago
0.0.3
3 years ago
0.0.2
3 years ago
0.0.9
3 years ago
0.0.8
3 years ago
0.0.5
3 years ago
0.0.4
3 years ago
0.0.7
3 years ago
0.0.6
3 years ago
0.0.1
3 years ago
0.0.0
3 years ago