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

nanolisp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nanolisp - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

8

library.js

@@ -121,6 +121,8 @@ module.exports = function Library (includes) {

this.map = async (fn, arr) => {
let res = [];
for (let i = 0; i < arr.length; i++) {
const arg = arr[i]
await fn(arg)
res.push(await fn(arg));
}
return res;
}

@@ -238,6 +240,2 @@

this.on = (event, f) => { // Triggers on event.
ronin.bind(event, f)
}
this.test = (name, a, b) => {

@@ -244,0 +242,0 @@ if (`${a}` !== `${b}`) {

{
"name": "nanolisp",
"version": "1.0.0",
"version": "1.0.1",
"description": "Embeddable Lisp for JS projects",

@@ -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