You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only reason we are using the bit64 package is for this bit of code:
# Validate ids suppliedbox_id<-function(x) {
if (!is.null(x) && any(is.na(bit64::as.integer64(x))))
stop("box.com API ids must be (coercible to) 64-bit integers")
if (!is.null(x))
return(as.character(bit64::as.integer64(x)))
}
I think we could drop {bit64} by replacing this validator using a regular-expression that checks for digits.
The text was updated successfully, but these errors were encountered:
This is a followon from #80.
The only reason we are using the bit64 package is for this bit of code:
I think we could drop {bit64} by replacing this validator using a regular-expression that checks for digits.
The text was updated successfully, but these errors were encountered: