1
0
mirror of https://gitea.com/actions/setup-node.git synced 2025-07-05 00:03:54 +08:00
setup-node/node_modules/normalize-package-data/lib/safe_format.js

10 lines
246 B
JavaScript
Raw Normal View History

2020-01-25 01:21:24 +08:00
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)
}