Socket
Socket
Sign inDemoInstall

cury

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cury

Curry a function with typescript typing


Version published
Weekly downloads
4
increased by100%
Maintainers
1
Install size
130 kB
Created
Weekly downloads
 

Readme

Source

cury

NPM version Build status Downloads

Usage:

import curry from 'cury';

const curried = curry(function(name: string, age: number) {
  return `${name} is ${age} years old`;
})

console.log(curried('Bob')(50)); // logs: 'Bob is 50 years old'

FAQs

Last updated on 03 Jan 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc