adminforth 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modules/utils.js +0 -2
- package/modules/utils.ts +0 -2
- package/package.json +1 -1
package/dist/modules/utils.js
CHANGED
|
@@ -309,8 +309,6 @@ export function inverseRGBA(rgba) {
|
|
|
309
309
|
return brightness > 128 ? 'rgba(0,0,0,1)' : 'rgba(255,255,255,1)';
|
|
310
310
|
}
|
|
311
311
|
export function suggestIfTypo(names, name) {
|
|
312
|
-
console.log('names', names);
|
|
313
|
-
console.log('name', name);
|
|
314
312
|
if (!name) {
|
|
315
313
|
return null;
|
|
316
314
|
}
|
package/modules/utils.ts
CHANGED