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

neuroflow-utils

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

neuroflow-utils

# Getting Started ## Installation ```bash // npm npm install neuroflow-utils

  • 0.1.3
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

NeuroFlow Javascript Utilities

Getting Started

Installation

// npm
npm install neuroflow-utils

// pnpm
pnpm add neuroflow-utils

// yarn
yarn add neuroflow-utils

// bun
bun add neuroflow-utils

Using the utilities

import { isEqual } from "neuroflow-utils";

const obj1 = { a: 1 }
const obj2 = { a: 1 }
const obj3 = { a: '1' }

isEqual(obj1, obj2); // true
isEqual(obj1, obj3) // false
isEqual(1, 1) // true
isEqual(1, '1') // false

Contributing

Setup

# install dependencies
bun install

# test the app
bun test

# build the app, available under dist
bun run build

Publishing

As an invited collaborator on the NPM package, login to your npm account via the command line (npm login). Then, simply update the version based on semver standards and run npm publish

License

MIT

Keywords

FAQs

Package last updated on 15 Nov 2023

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