.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / normalize-package-data / lib / safe_format.js
1 var util = require('util')
2
3 module.exports = function() {
4   var args = Array.prototype.slice.call(arguments, 0)
5   args.forEach(function(arg) {
6     if (!arg) throw new TypeError('Bad arguments.')
7   })
8   return util.format.apply(null, arguments)
9 }