UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

9 lines (8 loc) 294 B
function vsprintf(format, args) { // discuss at: http://phpjs.org/functions/vsprintf/ // original by: ejsanders // depends on: sprintf // example 1: vsprintf('%04d-%02d-%02d', [1988, 8, 1]); // returns 1: '1988-08-01' return this.sprintf.apply(this, [format].concat(args)); }