root 3bf41bf355 update | před 1 rokem | |
---|---|---|
.. | ||
config | před 1 rokem | |
.eslintrc | před 1 rokem | |
.gitattributes | před 1 rokem | |
.travis.yml | před 1 rokem | |
CHANGELOG.md | před 1 rokem | |
LICENSE | před 1 rokem | |
README.md | před 1 rokem | |
index.js | před 1 rokem | |
package.json | před 1 rokem | |
test.js | před 1 rokem |
Definitions of levels for logging purposes & shareable Symbol constants.
const { LEVEL } = require('triple-beam');
const colors = require('colors/safe');
const info = {
[LEVEL]: 'error',
level: 'error',
message: 'hey a logging message!'
};
// Colorize your log level!
info.level = colors.green(info.level);
// And still have an unmutated copy of your level!
console.log(info.level === 'error'); // false
console.log(info[LEVEL] === 'error'); // true
Tests are written with mocha
, assume
, and nyc
. They can be run with npm
:
npm test