You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,26 +11,26 @@ Helpful Scripts framework-independent data management functions.
11
11
Data is managed in a simple in-memory database that holds data in rows of columns.
12
12
It autodetermines the types of data held in each column, along with the
13
13
domain range for each column of data.
14
-
Complex filters can be applied by defining [`Conditions`](https://helpfulscripts.github.io/hsDatab/indexGH.html#!/api/hsDatab/hsDatab.DataFilters) using a simple query object structure.
14
+
Complex filters can be applied by defining [`Conditions`](https://helpfulscripts.github.io/hsDatab/#!/api/hsDatab/hsDatab.DataFilters) using a simple query object structure.
15
15
16
16
## Installation
17
17
`npm i hsdatab`
18
18
19
19
## Data Types
20
-
supported [data types](https://helpfulscripts.github.io/hsDatab/indexGH.html#!/api/hsDatab/hsDatab.Data.Data.type) include
20
+
supported [data types](https://helpfulscripts.github.io/hsDatab/#!/api/hsDatab/hsDatab.Data.Data.type) include
21
21
-**number**: numeric values
22
22
-**name**: nominal values, represented by arbitrary words
23
23
-**date**: date values
24
24
-**currency**: Currently supported: '$dd[,ddd]'
25
25
-**percent**: 'd%'
26
26
27
27
## Data Class
28
-
The fundamental object in this library is [`Data`](https://helpfulscripts.github.io/hsDatab/indexGH.html#!/api/hsDatab/hsDatab.Data.Data),
28
+
The fundamental object in this library is [`Data`](https://helpfulscripts.github.io/hsDatab/#!/api/hsDatab/hsDatab.Data.Data),
29
29
a simple row-column based database object,
30
30
featuring named columns, sorting, mapping and filtering functions.
31
31
32
32
## Example
33
-
see the [docs](https://helpfulscripts.github.io/hsDatab/indexGH.html#!/api/hsDatab/0) for a live example.
33
+
see the [docs](https://helpfulscripts.github.io/hsDatab/#!/api/hsDatab/0) for a live example.
34
34
35
35
## Usage
36
36
The following simple example illustrates some of the features:
0 commit comments