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

rework-plugin-function

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rework-plugin-function - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

11

index.js

@@ -7,4 +7,2 @@

var visit = require('rework-visit');
var utils = require('rework/lib/utils');
var strip = utils.stripQuotes;

@@ -96,1 +94,10 @@ /**

/**
* strip quotes from string
* @api private
*/
function strip(str) {
if ('"' == str[0] || "'" == str[0]) return str.slice(1, -1);
return str;
}

5

package.json
{
"name": "rework-plugin-function",
"version": "0.1.2",
"version": "0.1.3",
"description": "function() plugin for rework, formerly included in core",

@@ -31,5 +31,2 @@ "main": "index.js",

},
"peerDependencies": {
"rework": "^0.20.2"
},
"dependencies": {

@@ -36,0 +33,0 @@ "rework-visit": "^1.0.0"

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