comparison xml/en/docs/njs/reference.xml @ 2735:ff357b676c2e

Removed trailing spaces.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 10 Jun 2021 18:27:24 +0300
parents f82f16e327f2
children 7255a5468474
comparison
equal deleted inserted replaced
2734:ce45ee742fbe 2735:ff357b676c2e
79 can be accessed with the syntax: 79 can be accessed with the syntax:
80 <literal>headersIn.foo</literal> or <literal>headersIn['Foo']</literal>. 80 <literal>headersIn.foo</literal> or <literal>headersIn['Foo']</literal>.
81 </para> 81 </para>
82 82
83 <para> 83 <para>
84 The 84 The
85 <header>Authorization</header>, 85 <header>Authorization</header>,
86 <header>Content-Length</header>, 86 <header>Content-Length</header>,
87 <header>Content-Range</header>, 87 <header>Content-Range</header>,
88 <header>Content-Type</header>, 88 <header>Content-Type</header>,
89 <header>ETag</header>, 89 <header>ETag</header>,
1372 <tag-name id="buffer_concat"><literal>Buffer.concat(<value>list</value>[, 1372 <tag-name id="buffer_concat"><literal>Buffer.concat(<value>list</value>[,
1373 <value>totalLength</value>])</literal></tag-name> 1373 <value>totalLength</value>])</literal></tag-name>
1374 <tag-desc> 1374 <tag-desc>
1375 Returns a new Buffer 1375 Returns a new Buffer
1376 which is the result of concatenating all the Buffer instances in the list. 1376 which is the result of concatenating all the Buffer instances in the list.
1377 If there are no items in the list or the total length is 0, 1377 If there are no items in the list or the total length is 0,
1378 a new zero-length Buffer is returned. 1378 a new zero-length Buffer is returned.
1379 If <value>totalLength</value> is not specified, 1379 If <value>totalLength</value> is not specified,
1380 it is calculated from the Buffer instances in list by adding their lengths. 1380 it is calculated from the Buffer instances in list by adding their lengths.
1381 If <value>totalLength</value> is specified, 1381 If <value>totalLength</value> is specified,
1382 it is coerced to an unsigned integer. 1382 it is coerced to an unsigned integer.