New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bukk

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bukk - npm Package Compare versions

Comparing version 0.0.0 to 0.1.0

.npmignore

12

package.json
{
"name": "bukk",
"version": "0.0.0",
"version": "0.1.0",
"license": "MIT",

@@ -9,3 +9,13 @@ "repository": "christianhg/bukk",

"email": "christianhg@gmail.com"
},
"scripts": {
"test": "ava",
"watch:test": "ava --watch"
},
"ava": {
"files": "tests/*.js"
},
"devDependencies": {
"ava": "^0.17.0"
}
}

@@ -13,4 +13,46 @@ # bukk

## "Bukk?"
## "Bukk"?
"Bukk" means "ram" in Norwegian.
## Usage
Install using `yarn`:
```
yarn add bukk
```
Or `npm`:
```
npm install --save bukk
```
Import module:
```js
const B = require('bukk')
```
## Development
Install dependencies:
```
yarn install
```
### Running tests
Test once:
```
yarn run test
```
Test in watch mode:
```
yarn run watch:test
```

2

src/curry.js
const curry = (f, recieved = [], arity = f.length) =>
arity === 0
arity <= 0
? f.apply(undefined, recieved)

@@ -4,0 +4,0 @@ : (...args) =>

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