Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 324 Bytes

File metadata and controls

22 lines (14 loc) · 324 Bytes

安装

npm i spliturl

使用

const url = 'https://www.google.com/home?a=b&b=c'
const result = splitUrl(url)
console.log(result)
//result[url] = https://www.google.com/home
//result[params] = {a: 'b',b: 'c'}

github地址

地址