2024-03-24から1日間の記事一覧

コメント除去 + 関数リストアップ const fs = require('fs'); const path = require('path'); function removeComments(code) { const lines = code.split(/(?マルチラインコメントモード if (char === '*' && line[i + 1] === '/') { // 終端検出 inMultili…

コメント除去 function removeComments(code) { const lines = code.split(/(?マルチラインコメントモード if (char === '*' && line[i + 1] === '/') { // 終端検出 inMultilineComment = false; i++; // /ぶんをスキップ } else if (char === '\n') { // …