const chalk = require('chalk');
const error = chalk.bold.red; // <= Here
console.log(chalk.bold.white("test")) // <= Here
console.log(error('Error!'));
如您所见,“chalk.bold.red”方法存储在一个变量中,随后可以将其作为裸函数对象调用。我怎样才能自己做?如:
const bold = myFunc.bold;
myFunc.center.bold("I am Center");
bold("I am bold")
myFunc.red.bold.right("I am red");