platformatic
Version:
Platformatic CLI
38 lines (33 loc) • 1.84 kB
JavaScript
import { green } from 'colorette'
const str = `
//////
/////////////
/////// ///////
/////// ///////
/////// ///////
//// ////
&&&& //// //// &&&&
&&&&&&& //// //// &&&&&&&
&&&&&&& //// //// &&&&&&&
&&&& //// //// &&&&&&&
&&&& //// //// &&&& &&
&&&& //// //// &&& &&&&&&
&&&& //// //// &&& &&&&&&
&&&& ///// ///// &&& &&&&
&&&& /////// /////// &&& &&&&
&&&& ////// /////// &&& &&&&&&&
&&&& //// ///////// //////// &&& &&&&&&
&&&& //// /// //////////// &&&& &&& &&&
&&&&&&& //// /// ///// &&&& &&&&
&&&&&&& //// &&& &&&&& &&&&&&&
&&& //// &&&& &&&&&&& &&&&&&&
//// &&& &&&& &&&&&&&&&&
//// &&& &&&& &&&&
// &&&&& &&&&
&&&&&&& &&&&&&
&&&&&&&&&&&&&
&&&&&&
`
export const logo = str.replace(/\//g, function (str) {
return green(str)
})