Uploaded utils

This commit is contained in:
2026-03-30 00:01:29 +01:00
parent 1c0def4d26
commit c173754a0d
5 changed files with 15 additions and 0 deletions

0
human_rights_greek.pdf Normal file
View File

4
my-utils/index.js Normal file
View File

@@ -0,0 +1,4 @@
module.exports = {
foo: require('./lib/foo'),
bar: require('./lib/bar')
};

3
my-utils/lib/bar.js Normal file
View File

@@ -0,0 +1,3 @@
module.exports = function bar(x) {
return x * 2;
};

3
my-utils/lib/foo.js Normal file
View File

@@ -0,0 +1,3 @@
module.exports = function foo(x) {
return x * 2;
};

5
my-utils/package.json Normal file
View File

@@ -0,0 +1,5 @@
{
"name": "my-utils",
"version": "1.0.0",
"main": "index.js"
}