什么是 underrated?
Underrated 是一个轻量级的 JavaScript 库,它可以将文本变成有趣的 ASCII 艺术。这个库能够将普通的文本转换成华丽的 ASCII 艺术形式,是在快速制作 ASCII 艺术时非常有用的工具。
安装
安装 rated 如下:
npm install -g underrated
使用
使用 rated 也很简单。仅需调用它的方法,传入您需要进行 ASCII 艺术转换的文本,就可以得到转换后的结果。
const underrated = require('underrated'); console.log(underrated('Hello World!'));
这个示例代码可以将字符串 Hello World! 转换为 ASCII 艺术。
输出结果:
-- -------------------- ---- ------- ------ ------- ---- ---- ---- - ----- ---- ---- ---- -- --- - - - -- - ---- - --- --- - - -- - ---- - --- -- - --- - --- - ----- - -- --- --- - -- - - - ----- - - -- --- --- - - - --- -- -- - --- ------- ---- -- ---- --- - -- - - - -- ----------- ---- --- - - - --- - - - - - - --- ------ -- - ----- - - - - - - - ------ -- - - ----- - - - - - --- ------- -- - - ---- --- - ------ - - - -- - - - -- - ------ - ------ - - - - - --- - - - - -- ---- -- - - - ------ - - - --- - - - -- - - - ---- ---- - ---- ------ - - - - - - - ------ ---- ------ - - - ----- - - ------ ------ - - ------ ----- - ----- -
API
rated 包提供以下方法:
underrated(text: string): string
将文本转换成 ASCII 艺术。
const art = underrated('Hello World!'); console.log(art);
输出:
-- -------------------- ---- ------- ------ ------- ---- ---- ---- - ----- ---- ---- ---- -- --- - - - -- - ---- - --- --- - - -- - ---- - --- -- - --- - --- - ----- - -- --- --- - -- - - - ----- - - -- --- --- - - - --- -- -- - --- ------- ---- -- ---- --- - -- - - - -- ----------- ---- --- - - - --- - - - - - - --- ------ -- - ----- - - - - - - - ------ -- - - ----- - - - - - --- ------- -- - - ---- --- - ------ - - - -- - - - -- - ------ - ------ - - - - - --- - - - - -- ---- -- - - - ------ - - - --- - - - -- - - - ---- ---- - ---- ------ - - - - - - - ------ ---- ------ - - - ----- - - ------ ------ - - ------ ----- - ----- -
总结
使用 underrated,可以轻松制作出华丽的 ASCII 艺术,非常适合用于快速的 ASCII 艺术创作。希望这篇文章能够为大家提供帮助,感谢阅读!
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/60056ca481e8991b448e60ef