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

@exodus/basic-utils

Package Overview
Dependencies
Maintainers
99
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exodus/basic-utils - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

CHANGELOG.md

11

lib/index.js

@@ -8,4 +8,3 @@ "use strict";

SynchronizedTime: true,
cleanInput: true,
pDebounce: true
cleanInput: true
};

@@ -24,8 +23,2 @@ Object.defineProperty(exports, "SynchronizedTime", {

});
Object.defineProperty(exports, "pDebounce", {
enumerable: true,
get: function () {
return _pDebounce.default;
}
});

@@ -64,4 +57,2 @@ var _synchronizedTime = _interopRequireDefault(require("./synchronized-time"));

var _pDebounce = _interopRequireDefault(require("p-debounce"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

@@ -6,3 +6,3 @@ "use strict";

});
exports.pickBy = exports.pick = exports.orderBy = exports.omit = exports.mapValues = exports.mapKeys = exports.isNil = void 0;
exports.pick = exports.orderBy = exports.omit = exports.mapValues = exports.mapKeys = exports.isNil = void 0;

@@ -24,9 +24,2 @@ var _minimalisticAssert = _interopRequireDefault(require("minimalistic-assert"));

const pickBy = (obj, fn) => {
assertFunction(fn);
return obj == null ? {} : Object.fromEntries(Object.entries(obj).filter(([, value]) => fn(value)));
};
exports.pickBy = pickBy;
const omit = (obj, remove) => {

@@ -33,0 +26,0 @@ assertArray(remove);

{
"name": "@exodus/basic-utils",
"version": "1.1.0",
"version": "1.1.1",
"description": "Basic lightweight lib with common utility classes and methods.",

@@ -13,5 +13,4 @@ "main": "lib/index.js",

"dependencies": {
"minimalistic-assert": "^1.0.1",
"p-debounce": "^4.0.0"
"minimalistic-assert": "^1.0.1"
}
}
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