@tcn/ui-layout
Advanced tools
Comparing version 0.3.25 to 0.3.26
export function removeUndefinedProperties(obj) { | ||
const result = {}; | ||
Object.keys(obj).forEach(k => { | ||
if (typeof k !== 'undefined') { | ||
if (typeof obj[k] !== 'undefined') { | ||
result[k] = obj[k]; | ||
@@ -6,0 +6,0 @@ } |
{ | ||
"name": "@tcn/ui-layout", | ||
"version": "0.3.25", | ||
"version": "0.3.26", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "TCN Layout.", |
Sorry, the diff of this file is not supported yet
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
228445