Urara-Blog/node_modules/.pnpm-store/v3/files/f0/7762f1f37bbf2b7d5b512e8e637ada1d0f6ba6bf7823cde32debab25838ba6bc4ef95e99efd736a32e2042f902b8ec9ea1193d4e06f2966ff7fb786367e2d2
2022-08-14 01:14:53 +08:00

9 lines
246 B
Text

var util = require('util')
module.exports = function() {
var args = Array.prototype.slice.call(arguments, 0)
args.forEach(function(arg) {
if (!arg) throw new TypeError('Bad arguments.')
})
return util.format.apply(null, arguments)
}