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.1.2 to 0.1.3

2

package.json
{
"name": "wodge",
"version": "0.1.2",
"version": "0.1.3",
"description": "a wodge of functional dough",

@@ -5,0 +5,0 @@ "main": "wodge.js",

"use strict";
var l = console.log;
exports.extend = function(obj, srcObj){

@@ -15,2 +17,15 @@ for (var prop in srcObj){

var ansi = {
black: 30,
red: 31,
green: 32,
yellow: 33,
blue: 34,
magenta: 35,
cyan: 36,
white: 37,
bold: 1,
underline: 4
};
exports.black = function(txt){

@@ -43,2 +58,8 @@ return "\x1b[30m" + txt + "\x1b[0m";

};
exports.ansi = function(){
var args = exports.array(arguments),
txt = args.shift(),
codes = args.map(function(arg){ return ansi[arg]; });
return "\x1b[" + codes.join(";") + "m" + txt + "\x1b[0m";
};

@@ -85,1 +106,13 @@ exports.pluck = function(object, fn){

};
if (process.platform === "win32") {
exports.symbol = {
tick: "\u221A",
cross: "\u00D7"
};
} else {
exports.symbol = {
tick: "✔︎",
cross: "✖"
};
}
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