panoramatrack-helper 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.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # panoramatrack-helper
package/index.js ADDED
@@ -0,0 +1,8 @@
1
+ //index.js
2
+
3
+ function test() {
4
+ return "Test helper.";
5
+ }
6
+ module.exports = {
7
+ test
8
+ }
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "panoramatrack-helper",
3
+ "version": "1.0.0",
4
+ "description": "panoramatrack helper",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "Dolan Chowdhury",
10
+ "license": "ISC"
11
+ }
package/test/index.js ADDED
@@ -0,0 +1,2 @@
1
+ const { test } = require('..');
2
+ console.log(test());