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

alan-compile

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alan-compile - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

6

dist/ammtoaga.js

@@ -67,5 +67,5 @@ "use strict";

const evtName = rec.get('variable').t.trim();
// TODO: Add event support for Arrays
const evtSize = rec.get('fulltypename').t.trim() === 'void' ? 0 :
rec.get('fulltypename').t.trim() === 'string' ? -1 : 8;
const evtSize = rec.get('fulltypename').t.trim() === 'void' ? 0 : [
'int8', 'int16', 'int32', 'int64', 'float32', 'float64', 'bool',
].includes(rec.get('fulltypename').t.trim()) ? 8 : -1;
eventMem[evtName] = evtSize;

@@ -72,0 +72,0 @@ }

{
"name": "alan-compile",
"version": "0.0.3",
"version": "0.0.4",
"description": "Compile of alan to amm and javascript",

@@ -5,0 +5,0 @@ "scripts": {

@@ -72,5 +72,5 @@ import {

const evtName = rec.get('variable').t.trim()
// TODO: Add event support for Arrays
const evtSize = rec.get('fulltypename').t.trim() === 'void' ? 0 :
rec.get('fulltypename').t.trim() === 'string' ? -1 : 8
const evtSize = rec.get('fulltypename').t.trim() === 'void' ? 0 : [
'int8', 'int16', 'int32', 'int64', 'float32', 'float64', 'bool',
].includes(rec.get('fulltypename').t.trim()) ? 8 : -1
eventMem[evtName] = evtSize

@@ -77,0 +77,0 @@ }

Sorry, the diff of this file is too big to display

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