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

@bigbinary/neeto-cist

Package Overview
Dependencies
Maintainers
3
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bigbinary/neeto-cist

A package encapsulating common utility functions used across neeto products

  • 1.0.13
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

neeto-cist

BuildStatus

A collection of common utility functions used across all our neeto products. Try out the utility functions live at neetoCommons REPL.

Contents

Installation

Install from npm:

yarn add @bigbinary/neeto-cist@latest

Install the peer dependencies:

yarn add ramda

Usage

You can import all functions from @bigbinary/neeto-cist.

import { slugify } from "@bigbinary/neeto-cist";

Exports several general utility functions that are used throughout neeto products. The functions are structured in a manner reminiscent of Ramda, enabling seamless interoperability among them.

Pure functions were designed to be fail fast. If you call findById(10, null), it will throw error saying that it can't iterate through null.

But for most such pure functions, there is a failsafe alternative available. The failsafe alternative function will be prefixed with _. Example: _findById(10, null) returns null, _findById(10, undefined) returns undefined and _findById(10, [{ id: 10 }]) returns { id: 10 }.

Available functions

Array operations

Object operations

String operations

General utility functions



Development

FAQs

Package last updated on 11 Oct 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc