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

nixy

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nixy - npm Package Compare versions

Comparing version 0.0.24 to 0.0.25

6

compiler.js

@@ -203,3 +203,3 @@ const path = require('path');

if (attributes.length === 1) {
const {name, value} = attributes[0];
const {name, value, argument} = attributes[0];
if (name === 'input') {

@@ -209,3 +209,3 @@ return (value || 'input');

if (name.startsWith('...')) {
return name.substring(3);
return name.substring(3) + (argument ? `(${argument.value})` : '');
}

@@ -225,3 +225,3 @@ }

else if (attr.name.startsWith('...')) {
obj.push(attr.name);
obj.push(attr.name + (attr.argument ? `(${attr.argument.value})` : ''));
}

@@ -228,0 +228,0 @@ else {

{
"name": "nixy",
"version": "0.0.24",
"version": "0.0.25",
"description": "HTML templating framework focused on SSR and performance",

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