Metropolitan-Council / councilR

A curated collection of commonly used templates, color palettes, functions, and more!
Other
6 stars 1 forks source link

Make `is_mac()` helper function #62

Open eroten opened 11 months ago

eroten commented 11 months ago

We have this bit of code scattered across the package, and could make it more succinct with a function like

is_mac <- function(){
  grepl("mac", osVersion)
}

returns a logical, TRUE or FALSE.

Or this may be overkill for a 23 character function. 🤷