Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

demoon

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

demoon - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

src/legacyclasses.js

4

package.json
{
"name": "demoon",
"version": "0.0.6",
"version": "0.0.7",
"description": "Lua + Node",

@@ -16,4 +16,4 @@ "main": "src/index.js",

"dependencies": {
"wasmoon": "1.8.2"
"wasmoon": "1.11.0"
}
}

@@ -1,6 +0,7 @@

const { LuaFactory } = require('wasmoon')
const { LuaFactory, LuaMultiReturn } = require('wasmoon')
const path = require('path')
const fs = require('fs').promises
const FunctionClassTypeExtension = require('./legacyclasses')
const fs = require('fs/promises')
const start = async (entryFile) => {
const start = async (entryFile, arg) => {
const factory = new LuaFactory(undefined, process.env)

@@ -16,2 +17,4 @@

engine.global.registerTypeExtension(10, new FunctionClassTypeExtension)
engine.global.set('arg', arg)
engine.global.set('typeof', value => typeof value)

@@ -18,0 +21,0 @@ engine.global.set('instanceof', (value, type) => value instanceof type)

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