Comparing version 0.1.9 to 0.1.10
@@ -29,3 +29,3 @@ var util = require("util"); | ||
case "boolean": | ||
return val ? "true" : "false"; | ||
return val ? 1 : 0; | ||
case "function": | ||
@@ -32,0 +32,0 @@ return val(exports); |
@@ -9,3 +9,3 @@ { | ||
], | ||
"version": "0.1.9", | ||
"version": "0.1.10", | ||
"license": "MIT", | ||
@@ -12,0 +12,0 @@ "repository": { |
@@ -52,3 +52,3 @@ var common = require('../common'); | ||
dialect.escapeVal(true), | ||
"true" | ||
"1" | ||
); | ||
@@ -58,3 +58,3 @@ | ||
dialect.escapeVal(false), | ||
"false" | ||
"0" | ||
); |
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
46279