19 lines
596 B
JavaScript
19 lines
596 B
JavaScript
/* eslint-disable */
|
|
export const printANSI = () => {
|
|
let text = `
|
|
__
|
|
/ /___ ___ ____ ____ ___ __
|
|
__ / // _ \\/ _ \\/ __ \\/ __ \`/ / / /
|
|
/ /_/ // __/ __/ /_/ / /_/ / /_/ /
|
|
\\____/ \\___/\\___/ .___/\\__,_/\\__, /
|
|
/_/ /____/
|
|
:: Jeepay :: (v2.0.0.RELEASE)
|
|
适合互联网企业使用的开源支付系统 : https://www.jeequan.com
|
|
`
|
|
|
|
console.log(`%c${text}`, 'color: #fc4d50')
|
|
|
|
console.log('%cThanks for using Jeepay!', 'color: #fff; font-size: 14px; font-weight: 300; text-shadow:#000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;')
|
|
|
|
}
|