first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

51
build/node_modules/sum-up/index.js generated vendored Executable file
View File

@@ -0,0 +1,51 @@
/*!
* sum-up | MIT (c) Shinnosuke Watanabe
* https://github.com/shinnn/sum-up
*/
'use strict';
var util = require('util');
var Chalk = require('chalk').constructor;
module.exports = function sumUp(pkgData) {
if (!pkgData || Array.isArray(pkgData) || typeof pkgData !== 'object') {
throw new TypeError(
util.inspect(pkgData).replace(/\n/g, '') +
' is not a plain object. Expected an object of package information,' +
' for example npm\'s package.json `{name: ... version: ..., description: ..., ...}`.'
);
}
if (pkgData.color !== undefined && typeof pkgData.color !== 'boolean') {
throw new TypeError(
util.inspect(pkgData.color).replace(/\n/g, '') +
' is neither true nor false. `color` option must be a Boolean value.'
);
}
var chalk = new Chalk({enabled: pkgData.color});
var lines = [];
var nameAndVersion = chalk.cyan(pkgData.name || '');
if (pkgData.version) {
if (pkgData.name) {
nameAndVersion += ' ';
}
nameAndVersion += chalk.gray('v' + pkgData.version);
}
if (nameAndVersion) {
lines.push(nameAndVersion);
}
if (pkgData.homepage) {
lines.push(chalk.gray(pkgData.homepage));
}
if (pkgData.description) {
lines.push(pkgData.description);
}
return lines.join('\n');
};