Socket
Socket
Sign inDemoInstall

@agile-ts/utils

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agile-ts/utils - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

32

CHANGELOG.md
# @agile-ts/utils
## 0.0.5
### Patch Changes
- 855a921: #### :rocket: New Feature
- `core`, `multieditor`, `react`, `vue`
- [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19))
- `core`
- [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19))
- [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19))
#### :bug: Bug Fix
- `core`
- [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19))
#### :nail_care: Polish
- `core`, `multieditor`, `react`, `vue`
- [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19))
- `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue`
- [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19))
- `core`, `event`, `react`, `vue`
- [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19))
- `core`, `proxytree`
- [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19))
#### Committers: 1
- BennoDev ([@bennodev19](https://github.com/bennodev19))
## 0.0.4

@@ -4,0 +36,0 @@

8

dist/index.js

@@ -91,9 +91,9 @@ "use strict";

const _source = copy(source);
if (!_source)
if (_source == null)
return _source;
const keys = Object.keys(changes);
keys.forEach((property) => {
if (!config.addNewProperties && !_source[property])
return;
_source[property] = changes[property];
if ((!config.addNewProperties && _source[property] != null) ||
config.addNewProperties)
_source[property] = changes[property];
});

@@ -100,0 +100,0 @@ return _source;

{
"name": "@agile-ts/utils",
"version": "0.0.4",
"version": "0.0.5",
"author": "BennoDev",

@@ -5,0 +5,0 @@ "license": "MIT",

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