@bigstrider/greeting-package 1.4.0 → 1.4.1
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
package/lib/index.esm.js
CHANGED
|
@@ -11,7 +11,7 @@ const afternoonGreet = (name) => {
|
|
|
11
11
|
};
|
|
12
12
|
|
|
13
13
|
const nightGreet = (name) => {
|
|
14
|
-
return 'Good night
|
|
14
|
+
return 'Good night and have the sweetest dreams, ' + name;
|
|
15
15
|
};
|
|
16
16
|
|
|
17
17
|
export { afternoonGreet, eveningGreet, morningGreet, nightGreet };
|