phpjs
Version:
31 lines (24 loc) • 826 B
JavaScript
function printf() {
// From: http://phpjs.org/functions
// + original by: Ash Searle (http://hexmen.com/blog/)
// + improved by: Michael White (http://getsprink.com)
// + improved by: Brett Zamir (http://brett-zamir.me)
// - depends on: sprintf
// * example 1: printf("%01.2f", 123.1);
// * returns 1: 6
var body, elmt, d = this.window.document;
var ret = '';
var HTMLNS = 'http://www.w3.org/1999/xhtml';
body = d.getElementsByTagNameNS
? (d.getElementsByTagNameNS(HTMLNS, 'body')[0]
? d.getElementsByTagNameNS(HTMLNS, 'body')[0]
: d.documentElement.lastChild)
: d.getElementsByTagName('body')[0];
if (!body) {
return false;
}
ret = this.sprintf.apply(this, arguments);
elmt = d.createTextNode(ret);
body.appendChild(elmt);
return ret.length;
}