formula-parser-payroll 2.1.0 → 2.1.1
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 +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
#
|
|
1
|
+
# formula-parser-payroll
|
|
2
2
|
|
|
3
3
|
> A lightweight, high-performance payroll formula parser. Parse and evaluate payroll formulas with employee data variables.
|
|
4
4
|
|
|
5
5
|
## 📦 Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install
|
|
8
|
+
npm install formula-parser-payroll
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## 🚀 Quick Start
|
|
@@ -13,7 +13,7 @@ npm install payroll-formula-parser
|
|
|
13
13
|
### Basic Usage
|
|
14
14
|
|
|
15
15
|
```typescript
|
|
16
|
-
import { PayrollFormulaService } from '
|
|
16
|
+
import { PayrollFormulaService } from 'formula-parser-payroll';
|
|
17
17
|
|
|
18
18
|
const service = new PayrollFormulaService(n7);
|
|
19
19
|
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "formula-parser-payroll",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "A lightweight, high-performance payroll formula parser for GreatDay HR. Parse and evaluate payroll formulas with employee data variables. Features parallel processing, smart caching, and works with any database client (MySQL2, Knex, TypeORM, etc.).",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|