Socket
Socket
Sign inDemoInstall

@flybondi/ramda-land

Package Overview
Dependencies
2
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @flybondi/ramda-land

A collection of reusable functions for ramda


Version published
Weekly downloads
1.5K
decreased by-16.87%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

@flybondi/ramda-land

ramda js-flybondi semantic-release js-semistandard-style code style: prettier

A comprehensive collection of utilities for Ramda, providing a variety of useful, well tested, reusable functions.

yarn add @flybondi/ramda-land
yarn add ramda

Basic usage

Mix and match @flybondi/ramda-land functions with common ramda functions.

const { when } = require('ramda');
const { isNilOrEmpty, alwaysNew } = require('@flybondi/ramda-land');

const defaultToLife = when(isNilOrEmpty, alwaysNew({ life: 42 }));
defaultToLife(null); // -> { life: 42 }
defaultToLife({ foo: 'bar' }); // -> { foo: 'bar' }

Ramda overlap

curry, curryN and nAry functions are exported by both @flybondi/ramda-land and ramda. They behave in the exact same way, except that @flybondi/ramda-land counterparts retain wrapped function names after currying. This is useful for debugging and error tracing purposes as the name of the original function passed to any of the aforementioned functions will now appear on stack traces and debuggers (instead of an anonymous or sometimes arbitrarily named, internal ramda function).

This change was already proposed to the Ramda team and a PR is pending approval.

> curry(function foo(x, y) { return x + y; });
[Function: foo]
> curry(function foo(x, y) { return x + y; })(1)
[Function: foo]

> curryN(2, function foo(x, y) { return x + y; })
[Function: foo]
> curryN(2, function foo(x, y) { return x + y; })(1)
[Function: foo]

> nAry(3, function foo(x, y) { return x + y; })
[Function: foo]

View on Github.

Keywords

FAQs

Last updated on 25 Jan 2023

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