文件操作 - bubble-sort.mjs
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/css-declaration-sorter/src/core/bubble-sort.mjs
编辑文件内容
export function bubbleSort (list, comparator) { let upperIndex = list.length - 1; while (upperIndex > 0) { let swapIndex = 0; for (let i = 0; i < upperIndex; i += 1) { if (comparator(list[i], list[i + 1]) > 0) { const temp = list[i + 1]; list[i + 1] = list[i]; list[i] = temp; swapIndex = i; } } upperIndex = swapIndex; } return list; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件