4

in python i can use

  import os
  os.pathsep ===> ':' for unix, ';' for windows. 

how can i get the same in nodejs?

for now i am asking if platform is win32 or not

 process.platform === 'win32' ? ';' : ':' ;

i want to achieve the same as asked : Python: Platform independent way to modify PATH environment variable but in nodejs.

Community
  • 1
  • 1
guy mograbi
  • 25,363
  • 14
  • 79
  • 120

1 Answers1

11
var path      = require('path');
var delimiter = path.delimiter;

See also here.

robertklep
  • 185,685
  • 31
  • 370
  • 359