Method code for $english_lib.titleize()

[Turn on line numbering]
arg string;
var words;

words = string.explode();
if (words.length() < 2) {
    if (words)
        return string.capitalize();
    else
        return string;
}
return [words[1].capitalize(), @words.subrange(2, words.length() - 2).lmap('capitalize), words[words.length()].capitalize()].join();

["// Created 11-Nov-1996 as a part of ColdCore, see: @help Credit"]

the Cold Dark