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 2.3.0-beta.0 to 2.3.0-beta.1

views/modal.js

2

akashic-records.js

@@ -59,1 +59,3 @@ // Generated by CoffeeScript 1.9.3

require('./views');
require('./views/modal');

2

package.json
{
"name": "poi-plugin-akashic-records",
"version": "2.3.0-beta.0",
"version": "2.3.0-beta.1",
"description": "logbook plugin for poi",

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

@@ -40,15 +40,22 @@ // Generated by CoffeeScript 1.9.3

showBattleDetail = function(timestamp) {
var battleDetail;
if (window.ipc != null) {
var battleDetail, e;
try {
if (window.ipc == null) {
throw "" + (__("Your POI is out of date! You may need to visit http://0u0.moe/poi to get POI's latest release."));
}
battleDetail = ipc.access('BattleDetail');
if ((battleDetail != null ? battleDetail.showBattleWithTimestamp : void 0) != null) {
timestamp = (new Date(timestamp)).getTime();
return battleDetail.showBattleWithTimestamp(timestamp, (function(_this) {
return function(message) {
if (message != null) {
return console.log(message);
}
};
})(this));
if ((battleDetail != null ? battleDetail.showBattleWithTimestamp : void 0) == null) {
throw "" + (__("In order to find the detailed battle log, you need to download the latest battle-detail plugin and enable it."));
}
timestamp = (new Date(timestamp)).getTime();
return battleDetail.showBattleWithTimestamp(timestamp, (function(_this) {
return function(message) {
if (message != null) {
return window.toggleModal("" + (__('Tip')), message);
}
};
})(this));
} catch (_error) {
e = _error;
return window.toggleModal("" + (__('Tip')), e);
}

@@ -55,0 +62,0 @@ };

Sorry, the diff of this file is not supported yet

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