~ubuntu-branches/ubuntu/vivid/nodejs/vivid

« back to all changes in this revision

Viewing changes to lib/repl.js

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2013-11-13 23:17:51 UTC
  • mfrom: (1.1.29)
  • mto: This revision was merged to the branch mainline in revision 33.
  • Revision ID: package-import@ubuntu.com-20131113231751-m6uqywp5dc4s4fxo
Tags: 0.10.22~dfsg1-1
* Upstream update. 
* Refresh patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
641
641
        group.sort();
642
642
        for (var j = 0; j < group.length; j++) {
643
643
          c = group[j];
644
 
          if (!hasOwnProperty(c)) {
 
644
          if (!hasOwnProperty(uniq, c)) {
645
645
            completions.push(c);
646
646
            uniq[c] = true;
647
647
          }