The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
;(function(){

Jemplate.JSON = {

    parse: function(encoded) {
        return JSON.parse(encoded);
    },

    stringify: function(decoded) {
        return JSON.stringify(decoded);
    }

};

}());