refactor: some code tweaking

This commit is contained in:
2026-04-13 09:41:30 +03:00
parent f9d84bf245
commit 4225c4d382
5 changed files with 22 additions and 17 deletions

View File

@@ -4,7 +4,7 @@
#' not 'empty').
#'
#' Needed for proper data validation.
check_for_empty_data <- function(value_to_check) {
check_for_empty_data = function(value_to_check) {
# for any 0-length
if (length(value_to_check) == 0) return(TRUE)