Differences From Artifact [7e54b6b49b]:
- File gc_lang/fr/modules-js/lexicographe.js — part of check-in [2fd7dc4dd5] at 2017-04-25 11:51:19 on branch trunk — commit 1 (user: olr, size: 9320) [annotate] [blame] [check-ins using]
To Artifact [762e5e6b63]:
- File gc_lang/fr/modules-js/lexicographe.js — part of check-in [c55ae247e7] at 2017-07-29 08:06:31 on branch webext — [core][js] test if <exports> exists (user: olr, size: 9365) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
260 261 262 263 264 265 266 | } let nPos = s.indexOf("-"); return _dAD.get(s.slice(0, nPos)) + " +" + _dAD.get(s.slice(nPos+1)); }; } | > | > | 260 261 262 263 264 265 266 267 268 269 | } let nPos = s.indexOf("-"); return _dAD.get(s.slice(0, nPos)) + " +" + _dAD.get(s.slice(nPos+1)); }; } if (typeof(exports) !== 'undefined') { exports.Lexicographe = Lexicographe; } |