yamlify-object
Version:
Stringify object/array with yaml syntax
22 lines • 488 B
JavaScript
;
/**
* Default colors for all supported value types
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.colors = void 0;
exports.colors = {
base: noColor,
date: noColor,
error: noColor,
symbol: noColor,
string: noColor,
number: noColor,
boolean: noColor,
regexp: noColor,
null: noColor,
undefined: noColor,
};
function noColor(value) {
return value;
}
//# sourceMappingURL=colors.js.map