keys(): string[]
Type | Description |
string[] | All key names in the search parameter. |
import url from 'pts/url';export default function() {const params = new url.URLSearchParams('key1=value1&key2=value2');console.log(params.keys()); // key1,key2}