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

@lab009/magma-utils

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lab009/magma-utils - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

4

arrays/index.js

@@ -5,4 +5,2 @@ /* eslint-disable import/prefer-default-export */

export {
removeNil,
}
export { removeNil }

@@ -21,5 +21,3 @@ const execIfFunc = x => (typeof x === 'function' ? x() : x)

export default function ifElse(condition) {
return (then, or) => (
execIfFunc(condition) ? execIfFunc(then) : execIfFunc(or)
)
return (then, or) => (execIfFunc(condition) ? execIfFunc(then) : execIfFunc(or))
}
import ifElse from './ifElse'
export {
ifElse,
}
export { ifElse }
import filterWithRules from './filterWithRules'
import mergeDeep from './mergeDeep'
export {
filterWithRules,
mergeDeep,
}
export { filterWithRules, mergeDeep }
{
"name": "@lab009/magma-utils",
"version": "1.0.2",
"version": "1.0.3",
"description": "Utils for Magma.",

@@ -20,6 +20,3 @@ "repository": "lab009/magma",

"happypack": "3.0.3"
},
"devDependencies": {
"@lab009/eslint-config-magma": "^3.0.6"
}
}
import exec from './exec'
export {
exec,
}
export { exec }

Sorry, the diff of this file is not supported yet

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