Skip to content

Commit

Permalink
Add app
Browse files Browse the repository at this point in the history
  • Loading branch information
Emaro committed Feb 9, 2024
1 parent 9a2f16d commit fe7dd2c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { magicFn } from "../lib";
import { words } from "capitalize";

const r = magicFn(words("hello world"));
console.log('Result of magicFn:', r);
13 changes: 13 additions & 0 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"capitalize": "^2.0.4"
}
}

0 comments on commit fe7dd2c

Please sign in to comment.