convert-to-lower-case
Advanced tools
Comparing version
module.exports = function (string) { | ||
if (!typeof string === "string") return new Error('Object is not a string.') | ||
return string.toLowerCase(); | ||
try { | ||
return string.toLowerCase(); | ||
} catch { | ||
return new Error("Object is not a string.") | ||
} | ||
}; |
{ | ||
"name": "convert-to-lower-case", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "A package you will never need", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Trivial Package
Supply chain riskPackages less than 10 lines of code are easily copied into your own project and may not warrant the additional supply chain risk of an external dependency.
Found 1 instance in 1 package
Trivial Package
Supply chain riskPackages less than 10 lines of code are easily copied into your own project and may not warrant the additional supply chain risk of an external dependency.
Found 1 instance in 1 package
642
1.26%7
75%