pathchain 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 +4 -0
package/index.js ADDED
@@ -0,0 +1,15 @@
1
+ ///////////////
2
+ /// HELLO ///
3
+ ///////////////
4
+
5
+ /** hello
6
+ * [Function that greets someone who is calling the function]
7
+ *
8
+ * @param {string} name (optional, default="nameless entity")
9
+ *
10
+ * @return {string} result
11
+ */
12
+ exports.hello = (name = "nameless entity") => {
13
+ var result = "Hello from the Dream Operator's Garage, " + name;
14
+ return result;
15
+ }
package/package.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "name": "pathchain",
3
+ "version": "1.0.0"
4
+ }