You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
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

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"