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
8
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 6.1.5 to 6.1.6

2

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

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

@@ -51,8 +51,8 @@ 'use strict';

const $shiptypes = window.$shipTypes;
const dataItem = [];
dataItem.push(new Date().getTime(), '解体');
const shipId = body.api_ship_id;
dataItem.push($shiptypes[_ships[shipId].api_stype].api_name, `${_ships[shipId].api_name}(Lv.${_ships[shipId].api_lv})`);
_dataCoManager2.default.saveLog('retirement', dataItem);
this.store.dispatch((0, _actions.addLog)(dataItem, 'retirement'));
let dateTime = new Date().getTime();
for (const shipId of body.api_ship_id.split(',')) {
const dataItem = [dateTime++, '解体', $shiptypes[_ships[shipId].api_stype].api_name, `${_ships[shipId].api_name}(Lv.${_ships[shipId].api_lv})`];
_dataCoManager2.default.saveLog('retirement', dataItem);
this.store.dispatch((0, _actions.addLog)(dataItem, 'retirement'));
}
break;

@@ -59,0 +59,0 @@ }

Sorry, the diff of this file is not supported yet

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