When I change ns.sep it has no effect in NS():
> library(shiny)
> NS('foo','bar')
[1] "foo-bar"
> ns.sep
[1] "-"
> ns.sep <- '.'
> ns.sep
[1] "."
> NS('foo','bar')
[1] "foo-bar"
Is NS() using the shiny::ns.sep variable? If so, how can I modify it?
Thanks!