lint cleanup
authorJustin Wind <justin.wind+git@gmail.com>
Wed, 19 Jul 2023 18:28:15 +0000 (11:28 -0700)
committerJustin Wind <justin.wind+git@gmail.com>
Wed, 19 Jul 2023 18:28:37 +0000 (11:28 -0700)
lib/common.js
lib/content-negotiation.js

index e2e2a8c640f58ba4df827cd6e7afcc5ffb69fd4b..60e0d20a24ef7008cc189b5103e03278ce6e7302 100644 (file)
@@ -38,7 +38,7 @@ const fileScope = (filename) => {
  */
 const generateETag = (_filePath, fileStat, fileData) => {
   const hash = crypto.createHash('sha256');
-  if (fileStat && fileStat.mtimeMs) {
+  if (fileStat?.mtimeMs) {
     hash.update(fileStat.mtimeMs.toString());
   }
   hash.update(fileData);
@@ -197,7 +197,7 @@ const requestLogData = (req) => {
  * @deprecated after v1.2.5 (integrated into logger module)
  */
 const scrubHeaderObject = (data) => {
-  if (data && data.headers && 'authorization' in data.headers) {
+  if (data?.headers && 'authorization' in data.headers) {
     data.headers = Object.assign({}, data.headers, {
       authorization: obscureAuthorizationHeader(data.headers['authorization']),
     });
index 1425852ffa30925646bfcbc4809bb79d23c308ae..440137448895b393fe2d7dc0903d9086a60347a9 100644 (file)
@@ -20,7 +20,7 @@ class ContentNegotiation {
     if (type) {
       let weight = 1.0;
       params = params.reduce((acc, param) => {
-        const [p, v] = common.splitFirst(param, '=').map((x) => x && x.trim());
+        const [p, v] = common.splitFirst(param, '=').map((x) => x?.trim());
         if (p && v) {
           if (p === 'q') {
             weight = Number(v);
@@ -47,7 +47,9 @@ class ContentNegotiation {
    * @param {string} acceptHeader 
    */
   static _acceptClauses(acceptHeader) {
-    const clauses = (acceptHeader||'').split(',').map((clause) => ContentNegotiation._unpackAcceptClause(clause)).filter((clause) => clause);
+    const clauses = (acceptHeader||'').split(',')
+      .map((clause) => ContentNegotiation._unpackAcceptClause(clause))
+      .filter((clause) => clause);
     return clauses.sort((a, b) => b.weight - a.weight);
   }