function date()

in content/history/data/directors.js [66:69]


    function date(y, m, d) {
        // Date's month is [0..11]
        return new Date(y, m - 1, d);
    }