Changes between Initial Version and Version 2 of Ticket #28295


Ignore:
Timestamp:
Jun 9, 2017, 9:31:52 PM (7 years ago)
Author:
monotonee
Comment:

Converted Python-style Boolean values to those of JavaScript.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28295

    • Property Has patch set
  • Ticket #28295 – Description

    initial v2  
    1414// Outputs string 'reading-chicken-entrails-for-project-completion-'
    1515// Note trailing hyphen.
    16 console.log(URLify(source_string, max_length, False));
     16console.log(URLify(source_string, max_length, false));
    1717}}}
    1818
     
    2828// Outputs string 'reading-chicken-entrails-for-project-completion'
    2929// Note omission of trailing hyphen.
    30 console.log(URLify(source_string, max_length, False));
     30console.log(URLify(source_string, max_length, false));
    3131}}}
    3232
Back to Top