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

formidable

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

formidable - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

..travis.yml.un~

5

lib/incoming_form.js

@@ -362,3 +362,6 @@ if (global.GENTLY) require = GENTLY.hijack(require);

if (this.keepExtensions) {
name += path.extname(filename);
var ext = path.extname(filename);
ext = ext.replace(/(\.[a-z0-9]+).*/, '$1')
name += ext;
}

@@ -365,0 +368,0 @@

11

package.json
{
"name": "formidable",
"version": "1.0.7",
"version": "1.0.8",
"dependencies": {},
"devDependencies": {
"gently": "0.8.0",
"far": "0.0.7",
"fast-or-slow": "0.0.5",
"findit": "0.1.1",
"hashish": "0.0.4"
"hashish": "0.0.4",
"urun": "0.0.4",
"utest": "0.0.3"
},

@@ -16,2 +16,5 @@ "directories": {

"main": "./lib/index",
"scripts": {
"test": "make test"
},
"engines": {

@@ -18,0 +21,0 @@ "node": "*"

# Formidable
[![Build Status](https://secure.travis-ci.org/felixge/node-formidable.png)](http://travis-ci.org/felixge/node-formidable)
## Purpose

@@ -4,0 +6,0 @@

@@ -6,6 +6,6 @@ var mysql = require('..');

exports.dir = {
root: root,
lib: root + '/lib',
fixture: root + '/test/fixture',
tmp: root + '/test/tmp',
root : root,
lib : root + '/lib',
fixture : root + '/test/fixture',
tmp : root + '/test/tmp',
};

@@ -16,4 +16,3 @@

exports.formidable = require('..');
exports.fastOrSlow = require('fast-or-slow');
exports.assert = require('assert');
exports.assert = require('assert');

@@ -20,0 +19,0 @@ exports.require = function(lib) {

#!/usr/bin/env node
var far = require('far').create();
far.add(__dirname);
far.include(/test-.*\.js$/);
far.execute();
require('urun')(__dirname)
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