如何在 nodejs get-image 颜色库中仅打印 console.log 中的 rgb 值?

how to print only rgb value in console.log in nodejs get-image colors library?

这是一个 object.I 的数组,只想打印 rgb 值,以便我可以在 if else 语句中将它与其他 rgb 值匹配。请帮助。

 Color { _rgb: [ 4, 4, 4, 1, _clipped: false ] }

你可以让你的构造函数像,

function MyColor(color) {
    let rgb = color._rgb;
    [this.r, this.g, this.b] = [rgb[0], rgb[1], rgb[2]];
}
console.log(new MyColor(color));// MyColor { r: 40, g: 55, b: 67 }