@smailstarmusic/vinhetas 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +15 -0
  2. package/package.json +10 -0
package/index.js ADDED
@@ -0,0 +1,15 @@
1
+ const BORDOES = [
2
+ "Salve salve, DJ Smail Star Music na área!",
3
+ "Atenção pista! O dono do grave chegou!",
4
+ "Smail Star no comando da nave, segura o grave!",
5
+ "É o DJ Smail Star Music botando pra quebrar!",
6
+ "Prepara que agora é só pedrada! DJ Smail Star!"
7
+ ];
8
+
9
+ export function getVinhetaAleatoria() {
10
+ return BORDOES[Math.floor(Math.random() * BORDOES.length)];
11
+ }
12
+
13
+ export function getVinheta(nome = "pista") {
14
+ return `Atenção ${nome}! Quem assume o controle agora é DJ Smail Star Music!`;
15
+ }
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@smailstarmusic/vinhetas",
3
+ "version": "1.0.0",
4
+ "description": "Lib de vinhetas e bordões do DJ Smail Star Music",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "keywords": ["dj", "vinheta", "whatsapp", "bot", "smailstar"],
8
+ "author": "DJ Smail Star",
9
+ "license": "MIT"
10
+ }