@mcbash/learning-npm 2.0.0-beta.2 → 2.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.
- package/lib/index.cjs +1 -1
- package/lib/index.esm.js +1 -1
- package/package.json +1 -1
package/lib/index.cjs
CHANGED
@@ -11,7 +11,7 @@ const morningGreet = (name) => {
|
|
11
11
|
};
|
12
12
|
|
13
13
|
const eveningGreet = (name) => {
|
14
|
-
return "Good evening to " + name + " :) !!!!!!!!!!";
|
14
|
+
return "Good evening and don't let the bed bugs bite to " + name + " :) !!!!!!!!!!";
|
15
15
|
};
|
16
16
|
|
17
17
|
const afternoonGreet = (name) => {
|
package/lib/index.esm.js
CHANGED
@@ -9,7 +9,7 @@ const morningGreet = (name) => {
|
|
9
9
|
};
|
10
10
|
|
11
11
|
const eveningGreet = (name) => {
|
12
|
-
return "Good evening to " + name + " :) !!!!!!!!!!";
|
12
|
+
return "Good evening and don't let the bed bugs bite to " + name + " :) !!!!!!!!!!";
|
13
13
|
};
|
14
14
|
|
15
15
|
const afternoonGreet = (name) => {
|