diff options
author | Axetroy <axetroy.dev@gmail.com> | 2019-06-19 12:22:01 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-18 21:22:01 -0700 |
commit | c85b1c06a9804ad41fbccf8fe5a5689f28eb049e (patch) | |
tree | e855fc7c02baaa219aa81a2a54a69b19c1fb3716 /http/cookie.ts | |
parent | d6e92582cc2267210f71e893b14672783301f87b (diff) |
lint: add max line length rules (denoland/deno_std#507)
Original: https://github.com/denoland/deno_std/commit/b04fda30c8949b6347094b898bfa427c0b9a6162
Diffstat (limited to 'http/cookie.ts')
-rw-r--r-- | http/cookie.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/http/cookie.ts b/http/cookie.ts index 026ed1984..843f626f1 100644 --- a/http/cookie.ts +++ b/http/cookie.ts @@ -97,9 +97,10 @@ export function getCookies(req: ServerRequest): Cookies { * @param [cookie.domain] Specifies those hosts to which the cookie will be sent * @param [cookie.path] Indicates a URL path that must exist in the request. * @param [cookie.secure] Indicates if the cookie is made using SSL & HTTPS. - * @param [cookie.httpOnly] Indicates that cookie is not accessible via Javascript - * @param [cookie.sameSite] Allows servers to assert that a cookie ought not to be - * sent along with cross-site requests + * @param [cookie.httpOnly] Indicates that cookie is not accessible via + * Javascript + * @param [cookie.sameSite] Allows servers to assert that a cookie ought not to + * be sent along with cross-site requests * Example: * * setCookie(response, { name: 'deno', value: 'runtime', |