Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@js-util/config-loader

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@js-util/config-loader - npm Package Compare versions

Comparing version
1.2.4
to
1.2.5
+1
-1
package.json
{
"name": "@js-util/config-loader",
"version": "1.2.4",
"version": "1.2.5",
"description": "Quick and simple config loading, with sane defaults to get an application started",

@@ -5,0 +5,0 @@

@@ -159,7 +159,7 @@ //-----------------------------------------------------

// Copy it over to self
for( let key in mergedConfig ) {
for( let key in fullConfigObj ) {
if( key == "fetchValue" || key == "prototype" ) {
continue;
}
this[key] = Object.freeze(mergedConfig[key]);
this[key] = Object.freeze(fullConfigObj[key]);
}

@@ -166,0 +166,0 @@