Is it possible to get a specific cookie from set-cookie in node fetch.js
var ResonseCookies = (SentRequest.headers.raw()['set-cookie']);
and it has returned me as i wanted
[
'language=en; expires=Tue, 23-Feb-2021 00:55:18 GMT; Max-Age=2592000; path=/; secure; HttpOnly',
'session.ID=22B9DB6FA61744AC857D417118C7650F; expires=Tue, 23-Feb-2021 00:55:19 GMT; Max-Age=2592000; path=/; secure; HttpOnly',
'session.present=1; expires=Tue, 23-Feb-2021 00:55:19 GMT; Max-Age=2592000; path=/; secure'
]
is there anyway of just extracting the string
22B9DB6FA61744AC857D417118C7650F
From the response.
Thankyou in advance.