@agile-ts/utils
Advanced tools
Comparing version 0.0.4 to 0.0.5
# @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 @@ |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15263