thd-localizer 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 (4) hide show
  1. package/LICENSE +3 -0
  2. package/README.md +10 -0
  3. package/index.js +9 -0
  4. package/package.json +11 -0
package/LICENSE ADDED
@@ -0,0 +1,3 @@
1
+ MIT License
2
+ Copyright (c) 2026 Your Name
3
+
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # thd
2
+ A simple example package.
3
+
4
+ ## Installation
5
+ `npm install `
6
+
7
+ ## Usage
8
+ ```javascript
9
+ const utils = require('');
10
+ console.log(utils.sayHello('World'));
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ function sayHello(name) {
2
+ return `Hello, ${name}! Welcome to my npm package.`;
3
+ }
4
+
5
+ function add(a, b) {
6
+ return a + b;
7
+ }
8
+
9
+ module.exports = { sayHello, add };
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "thd-localizer",
3
+ "version": "1.0.0",
4
+ "description": "test localizer libary",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "ISC"
11
+ }