New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

poi-plugin-akashic-records

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

poi-plugin-akashic-records - npm Package Compare versions

Comparing version 5.0.4 to 5.0.5

2

package.json
{
"name": "poi-plugin-akashic-records",
"version": "5.0.4",
"version": "5.0.5",
"description": "logbook plugin for poi",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -279,2 +279,45 @@ // Generated by CoffeeScript 1.10.0

break;
case "No.,日付,海域,マス,出撃,ランク,敵艦隊,ドロップ艦種,ドロップ艦娘,ドロップアイテム,大破艦,旗艦,旗艦(第二艦隊),MVP,MVP(第二艦隊)":
logType = CONST.typeList.attack;
data = logs.slice(1).map(function(logItem) {
var retData, tmp, tmpArray;
logItem = logItem.split(',');
if (logItem.length !== 15) {
return [];
}
retData = [];
retData.push((new Date(logItem[1].replace(/-/g, "/"))).getTime());
tmpArray = logItem[3].match(/:\d+(-\d+)?/g);
retData.push(logItem[2] + "(" + (tmpArray[0].substring(1)) + ")");
if (logItem[4] === "ボス") {
tmp = "Boss点";
} else {
tmp = "道中";
}
retData.push((tmpArray[1].substring(1)) + "(" + tmp + ")");
if (logItem[4] === "出撃") {
tmp = "出撃";
} else {
tmp = "進撃";
}
retData.push(tmp);
retData.push(logItem[5]);
retData.push(logItem[6]);
retData.push("" + logItem[8] + (logItem[8] !== '' && logItem[9] !== '' ? ' & ' : '') + logItem[9]);
if (logItem[10] === "") {
tmp = "无";
} else {
tmp = "有";
}
retData.push(tmp);
retData.push(logItem[11]);
retData.push(logItem[12]);
retData.push(logItem[13]);
retData.push(logItem[14]);
return retData;
});
data = data.filter(function(log) {
return log.length === 12;
});
break;
case "日付,海域,マス,出撃,ランク,敵艦隊,ドロップ艦種,ドロップ艦娘,大破艦,旗艦,旗艦(第二艦隊),MVP,MVP(第二艦隊)":

@@ -281,0 +324,0 @@ logType = CONST.typeList.attack;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc