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

@ebflat9/fp

Package Overview
Dependencies
Maintainers
1
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ebflat9/fp - npm Package Compare versions

Comparing version 1.0.11 to 1.0.12

6

index.js

@@ -147,2 +147,8 @@ import { Maybe, Just, Nothing, Result, Success, Failure, Try, TryAsync } from './maybe.js'

export const deepProp = curry((path, a) => {
if (!Array.isArray(path)) path = path.split('.')
const [p, ...rest] = path
return !rest.length ? prop(p, a) : deepProp(rest, prop(p, a))
})
// map, filter, reduce

@@ -149,0 +155,0 @@ export const forEach = curry((f, M) => M.forEach(f))

2

package.json
{
"name": "@ebflat9/fp",
"version": "1.0.11",
"version": "1.0.12",
"description": "my fp utils",

@@ -5,0 +5,0 @@ "main": "index.js",

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