if (typeof String.prototype.format != "function") {
        String.prototype.format = function() {
            var args = Array.prototype.slice.call(arguments);
            args.unshift(this);
            return stringformat.apply(null, args);