JS warning #232 in loader.js at line 355 ch 76 - octal literals and
octal escape sequences are deprecated
Source:
[355]
API.FILE.mkdirs(API.FILE.dirname(cliOptions["link-program-to"]), 0775);
How should I write the mode so it is compatible with all JS engines?
Thanks!
Christoph
You are likely doomed to decimal if you want portability:
eastham:gpsee jbj$ dc
8 i
0775 p
509
i.e. 0775 in octal == 509 in decimal
There are coercion functions in the Math module if you wish the octal
(because its more readable). The leading zero indicating octal implicitly
is what isn't portable.
73 de Jeff
> Thanks!
> Christoph
>