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

funkis

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

funkis - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

lib/merge.js

1

index.js

@@ -19,2 +19,3 @@ module.exports =

, lt : require('./lib/lt')
, merge : require('./lib/merge')
, min : require('./lib/min')

@@ -21,0 +22,0 @@ , not : require('./lib/not')

7

package.json
{
"name": "funkis",
"version": "0.1.2",
"version": "0.1.3",
"description": "Functional programming in JavaScript.",

@@ -31,3 +31,6 @@ "main": "index.js",

},
"homepage": "https://github.com/mstade/funkis"
"homepage": "https://github.com/mstade/funkis",
"dependencies": {
"expect.js": "^0.3.1"
}
}

@@ -5,12 +5,12 @@ var fs = require('fs')

, funkis = require('../')
, expect = require('chai').expect
, expect = require('expect.js')
describe('funkis', function() {
it('should export every function in lib/', function() {
var names = fs.readdirSync(path.join(__dirname, '../lib')).map(function(file) {
return path.basename(file, '.js')
})
expect(funkis).to.have.keys(names)
var names = fs.readdirSync(path.join(__dirname, '../lib'))
.map(function(file) {
var module = path.basename(file, '.js')
expect(funkis).to.have.key(module)
})
})
})

Sorry, the diff of this file is not supported yet

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