forked from olcxjas-softworks/LarpixClient
Add capacitorjs runtime
This commit is contained in:
parent
d0ece489ee
commit
f90c0e6c40
8362 changed files with 1502407 additions and 1 deletions
22
node_modules/normalize-package-data/lib/make_warning.js
generated
vendored
Normal file
22
node_modules/normalize-package-data/lib/make_warning.js
generated
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue