Socket
Socket
Sign inDemoInstall

fn-pasta

Package Overview
Dependencies
1
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fn-pasta

Functional Pasta ================


Version published
Weekly downloads
13
increased by62.5%
Maintainers
1
Install size
19.0 kB
Created
Weekly downloads
 

Readme

Source

Functional Pasta

A collection of functional functions that I have found myself copy pastaing around.

I am trying to separate the pasta into useful strands.

browser support

comp(arr)

Turn array (or arguments) of functions into a single function that feeds the return value of one into the next.

partial(fn[, args, ...])

Return fn with arguments applied. Passing undefined will leave a hole that will be filled with arguments from the second fn call before the rest are appended to the arguments list.

curry(fn[, times])

Return a function that takes a single argument times number of times, and then calls fn in the context it was called in. times defaults/min is 2.

limit(num)

Return a function that takes a fn and limits it to the number of args provided.

casify(obj[, default])

Return a function that takes a case and checks to see if it is in obj. If not use the default, if not use the _default property of the object, if not use the default property of the object.

memo(fn[, cache])

Return a memoized version of fn, with _cache attached. Can provide an optional starting cache (be careful, can be used to provide incorrect answers to function calls). Cache keys are the stringified array of arguments.

op(operator)

Returns a function that applies the operator to the arguments.

d(arg)

return arg. An identity function. Also op('').

get(key)

Returns a function that gets key from the object it is called on.

all(fn)

Return a function that reduces all of it's arguments over fn. fn gets passed two arguments at a time.

FAQs

Last updated on 17 Mar 2013

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