How to use the __proto__ function from chalk
Find comprehensive JavaScript chalk.__proto__ code examples handpicked from public code repositorys.
59 60 61 62 63 64 65 66 67 68 69 70 71
// // chalk.__proto__ = function () { }; // // color.prototype.green = function () { }; // // color.prototype.blue = function () { }; // chalk.__proto__.green = function () { console.log('green') } // chalk.__proto__.blue = function () { console.log('blue') } // chalk.__proto__.bgRed = function () { console.log('bgRed inside green') } // // chalk.blue.__proto__.bgRed = function () { console.log('bgRed inside blue') }
0
0
0
+ 2 other calls in file