mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 12:34:33 +00:00

PR-URL: https://github.com/nodejs/node/pull/39813 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com>
23 lines
711 B
JavaScript
23 lines
711 B
JavaScript
var util = require('util')
|
|
var messages = require('./warning_messages.json')
|
|
|
|
module.exports = function () {
|
|
var args = Array.prototype.slice.call(arguments, 0)
|
|
var warningName = args.shift()
|
|
if (warningName === 'typo') {
|
|
return makeTypoWarning.apply(null, args)
|
|
} else {
|
|
var msgTemplate = messages[warningName] ? messages[warningName] : warningName + ": '%s'"
|
|
args.unshift(msgTemplate)
|
|
return util.format.apply(null, args)
|
|
}
|
|
}
|
|
|
|
function makeTypoWarning (providedName, probableName, field) {
|
|
if (field) {
|
|
providedName = field + "['" + providedName + "']"
|
|
probableName = field + "['" + probableName + "']"
|
|
}
|
|
return util.format(messages.typo, providedName, probableName)
|
|
}
|