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

compileit

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compileit - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

3

lib/compiler.js

@@ -95,3 +95,4 @@ var Generator = require('generate-js'),

utils.repeat(' ', scope.length) +
_.typeFormater(token.type) +
_.typeFormater(toke.constructor
.name || token.type) +
': ' +

@@ -98,0 +99,0 @@ _.sourceFormater(token.source())

@@ -25,6 +25,8 @@ var Generator = require('generate-js'),

console.log(
['Main'].concat(_._scope)
.map(function (item) {
return item.constructor.name;
})
['Main'].concat(
_._scope
.map(function (item) {
return item.constructor.name;
})
)
.join(' => ')

@@ -43,6 +45,8 @@ );

console.log(
['Main'].concat(_._scope)
.map(function (item) {
return item.constructor.name;
})
['Main'].concat(
_._scope
.map(function (item) {
return item.constructor.name;
})
)
.join(' => ')

@@ -63,6 +67,9 @@ );

console.log(
['Main'].concat(_._scope)
.map(function (item) {
return item.constructor.name;
})
['Main'].concat(
_._scope
.map(function (item) {
return toke.constructor.name ||
token.type;
})
)
.join(' => ')

@@ -69,0 +76,0 @@ );

{
"name": "compileit",
"version": "0.0.12",
"version": "0.0.13",
"description": "A simple parse cycle compiler.",

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

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