Differences From Artifact [2702fb7f6b]:
- File gc_lang/fr/modules-js/lexicographe.js — part of check-in [5e196b8b64] at 2017-07-26 17:48:10 on branch trunk — [core][js] change name of new functions for built-in objects (user: olr, size: 10427) [annotate] [blame] [check-ins using]
To Artifact [5e8c9037a7]:
- File gc_lang/fr/modules-js/lexicographe.js — part of check-in [f9a034e6ce] at 2017-07-27 10:10:40 on branch trunk — [core][js] test if variable <exports> exists (user: olr, size: 10472) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
281 282 283 284 285 286 287 | } let nPos = s.indexOf("-"); return _dAD.get(s.slice(0, nPos)) + " +" + _dAD.get(s.slice(nPos+1)); }; } | > | > | 281 282 283 284 285 286 287 288 289 290 | } let nPos = s.indexOf("-"); return _dAD.get(s.slice(0, nPos)) + " +" + _dAD.get(s.slice(nPos+1)); }; } if (typeof(exports) !== 'undefined') { exports.Lexicographe = Lexicographe; } |