文件操作 - utils.lambda.mjs
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/nitropack/dist/runtime/internal/utils.lambda.mjs
编辑文件内容
import { toBuffer } from "./utils.mjs"; export function normalizeLambdaIncomingHeaders(headers) { return Object.fromEntries( Object.entries(headers || {}).map(([key, value]) => [ key.toLowerCase(), value ]) ); } export function normalizeLambdaOutgoingHeaders(headers, stripCookies = false) { const entries = stripCookies ? Object.entries(headers).filter(([key]) => !["set-cookie"].includes(key)) : Object.entries(headers); return Object.fromEntries( entries.map(([k, v]) => [k, Array.isArray(v) ? v.join(",") : String(v)]) ); } export async function normalizeLambdaOutgoingBody(body, headers) { if (typeof body === "string") { return { type: "text", body }; } if (!body) { return { type: "text", body: "" }; } const buffer = await toBuffer(body); const contentType = headers["content-type"] || ""; return isTextType(contentType) ? { type: "text", body: buffer.toString("utf8") } : { type: "binary", body: buffer.toString("base64") }; } const TEXT_TYPE_RE = /^text\/|\/(javascript|json|xml)|utf-?8/; function isTextType(contentType = "") { return TEXT_TYPE_RE.test(contentType); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件