Socket
Socket
Sign inDemoInstall

cemu-smm

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cemu-smm - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

2

package.json
{
"name": "cemu-smm",
"version": "1.0.7",
"version": "1.0.8",
"description": "This is a module to simplify all kinds of tasks with Loadiine Super Mario Maker save files and respectively Cemu",

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

@@ -295,2 +295,17 @@ const Promise = require("bluebird");

loadCoursesSync: async function () {
for (let i = 0; i < SAVE_ORDER_SIZE; i++) {
let courseName = `course${i.pad(3)}`;
let coursePath = path.resolve(`${this.pathToSave}/${courseName}/`);
try {
fs.accessSync(coursePath, fs.constants.R_OK | fs.constants.W_OK);
this.courses[courseName] = await createCourse(i, coursePath);
} catch (err) {
}
}
return this.courses;
},
loadCourseElements: function () {

@@ -297,0 +312,0 @@

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