@symbo.ls/scratch
Advanced tools
Comparing version 0.3.19 to 0.3.20
@@ -5,3 +5,3 @@ { | ||
"author": "Symbols", | ||
"version": "0.3.19", | ||
"version": "0.3.20", | ||
"files": [ | ||
@@ -8,0 +8,0 @@ "src" |
@@ -5,4 +5,5 @@ 'use strict' | ||
if (LIBRARY[key]) return LIBRARY[key].value | ||
if (LIBRARY.default) return LIBRARY[LIBRARY.default].value | ||
return LIBRARY[Object.keys(LIBRARY)[0]].value | ||
if (LIBRARY.isDefault) return LIBRARY[LIBRARY.isDefault].value | ||
const hasValue = Object.keys(LIBRARY)[0] | ||
return hasValue && LIBRARY[hasValue] && LIBRARY[hasValue].value | ||
} | ||
@@ -9,0 +10,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
28282
869