static String ltrim(String s) { if (s == null) null; int i = 0; while (i < s.length() && " \t\r\n".indexOf(s.charAt(i)) >= 0) ++i; return i > 0 ? substring(s, i) : s; }
Began life as a copy of #2000477
download show line numbers debug dex old transpilations
Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment