Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wodge

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wodge - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

7

package.json
{
"name": "wodge",
"version": "0.0.0",
"description": "a wodge of functional cash",
"version": "0.0.1",
"description": "a wodge of functional dough",
"main": "wodge.js",
"author": "Lloyd Brookes"
"author": "Lloyd Brookes",
"repository": "https://github.com/75lb/wodge"
}

@@ -1,2 +0,2 @@

exports.extend = function extend(obj, srcObj){
exports.extend = function(obj, srcObj){
for (var prop in srcObj){

@@ -8,3 +8,3 @@ obj[prop] = srcObj[prop];

exports.escapeRegExp = function escapeRegExp(string){
exports.escapeRegExp = function(string){
return string

@@ -14,1 +14,16 @@ ? string.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1")

}
exports.red = function(txt){
return "\x1b[31m" + txt + "\x1b[0m";
};
exports.green = function(txt){
return "\x1b[32m" + txt + "\x1b[0m";
};
exports.pluck = function(object, fn){
var output = [];
for (var prop in object){
if (fn(object[prop])) output.push(prop);
}
return output;
}
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