Edit Page
res.clearCookie()
Clears cookie (name
) in the response.
Usage
res.clearCookie(name [,options]);
Details
The path option defaults to "/".
Example
res.cookie('name', 'tobi', { path: '/admin' });
res.clearCookie('name', { path: '/admin' });
Is something missing?
If you notice something we've missed or could be improved on, please follow this link and submit a pull request to the sails-docs repo. Once we merge it, the changes will be reflected on the website the next time it is deployed.