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

config-templator

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

config-templator - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

8

lib/config-templator.js

@@ -22,4 +22,8 @@ /*

var cleanValue = function (value) {
if (value == 'false') value = false;
else if (value == 'true') value = true;
if (value === 'false') {
value = false;
}
else if (value === 'true') {
value = true;
}
return value;

@@ -26,0 +30,0 @@ };

{
"name": "config-templator",
"version": "0.0.6",
"version": "0.0.7",
"description": "Dynamic replacement in object, inspired by GruntJS config",

@@ -21,3 +21,4 @@ "homepage": "https://github.com/loicmahieu/config-templator",

"scripts": {
"test": "grunt"
"test": "grunt",
"prepublish": "npm test"
},

@@ -24,0 +25,0 @@ "main": "lib/config-templator",

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