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

prelude-extension

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prelude-extension - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

16

index.js

@@ -0,3 +1,4 @@

// Generated by LiveScript 1.4.0
(function(){
var ref$, all, any, concatMap, each, filter, find, isType, keys, map, Obj, objToPairs, partition, reverse, sortBy, clamp, findAll, get, isEqualToObject, partitionString, mappend, rextend, set, transpose, unwrap, slice$ = [].slice, toString$ = {}.toString;
var ref$, all, any, concatMap, each, filter, find, isType, keys, map, Obj, objToPairs, partition, reverse, sortBy, clamp, findAll, get, isEmptyObject, isEqualToObject, partitionString, mappend, rextend, set, transpose, unwrap, slice$ = [].slice, toString$ = {}.toString;
ref$ = require('prelude-ls'), all = ref$.all, any = ref$.any, concatMap = ref$.concatMap, each = ref$.each, filter = ref$.filter, find = ref$.find, isType = ref$.isType, keys = ref$.keys, map = ref$.map, Obj = ref$.Obj, objToPairs = ref$.objToPairs, partition = ref$.partition, reverse = ref$.reverse, sortBy = ref$.sortBy;

@@ -29,2 +30,14 @@ clamp = curry$(function(n, min, max){

});
isEmptyObject = function(o){
var numberOfKeys;
numberOfKeys = function(it){
return it.length;
}(
keys(
Obj.filter(function(it){
return !!it;
})(
o)));
return numberOfKeys === 0;
};
isEqualToObject = curry$(function(o1, o2){

@@ -169,2 +182,3 @@ if (toString$.call(o1).slice(8, -1) !== toString$.call(o2).slice(8, -1)) {

get: get,
isEmptyObject: isEmptyObject,
isEqualToObject: isEqualToObject,

@@ -171,0 +185,0 @@ mappend: mappend,

2

package.json
{
"name": "prelude-extension",
"version": "0.0.8",
"version": "0.0.9",
"description": "prelude-extension",

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

@@ -17,2 +17,4 @@ Prelude Extension

`is-empty-object :: object -> Boolean`
`is-equal-to-object :: a -> b -> Boolean`

@@ -19,0 +21,0 @@

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