(Funktion (g, d, a) {}) (Fenster, Dokument, jQuery);
var parsed = psl.parse('one.two.roothost.co.uk');
console.log(parsed.domain);
Elegant Echidna
var parsed = psl.parse('one.two.roothost.co.uk');
console.log(parsed.domain);
;( // <---------------+
// | encapsulate the function
function($, window, document) { // <--+ declare | and call it passing three
// | anonymous | arguments.
} // <--+ function |
// |
)(jQuery, window, document); // <---------------+