UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

13 lines (10 loc) 376 B
'use strict'; module.exports = function vsprintf(format, args) { // discuss at: https://locutus.io/php/vsprintf/ // original by: ejsanders // example 1: vsprintf('%04d-%02d-%02d', [1988, 8, 1]) // returns 1: '1988-08-01' var sprintf = require('../strings/sprintf'); return sprintf.apply(this, [format].concat(args)); }; //# sourceMappingURL=vsprintf.js.map