-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Bump the development-dependencies group with 9 updates (#67) Bumps the development-dependencies group with 9 updates: | Package | From | To | | --- | --- | --- | | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.23.6` | `7.23.7` | | [@babel/plugin-transform-runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-runtime) | `7.23.6` | `7.23.7` | | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.23.6` | `7.23.8` | | [@babel/register](https://github.com/babel/babel/tree/HEAD/packages/babel-register) | `7.22.15` | `7.23.7` | | [@natlibfi/fixugen](https://github.com/natlibfi/fixugen-js) | `2.0.3` | `2.0.4` | | [@natlibfi/fixura](https://github.com/natlibfi/fixura-js) | `3.0.3` | `3.0.4` | | [chai](https://github.com/chaijs/chai) | `4.3.10` | `4.4.1` | | [eslint](https://github.com/eslint/eslint) | `8.55.0` | `8.56.0` | | [nodemon](https://github.com/remy/nodemon) | `3.0.2` | `3.0.3` | * Type of material (#65) * Support type of material checks, such as isBK(), isCF()... * Add getTypeOfMaterial() * Update deps * 8.1.0-alpha.3
- Loading branch information
Showing
37 changed files
with
1,140 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"description": "identify record as VM", | ||
"skip": false, | ||
"input": { | ||
"leader": "01234ckm a22005894i 4500", | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "getTypeOfMaterial", "args": {"self": true} } | ||
], | ||
"returns": "VM", | ||
"immutable": true, | ||
"only": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"description": "fail to determine the type of material (LDR/07+006/00 combo)", | ||
"skip": false, | ||
"input": { | ||
"leader": "01234cki a22005894i 4500", | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"}, | ||
{"tag": "006", "value": "a|||||||||||||||||"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "getTypeOfMaterial", "args": {"self": true }} | ||
], | ||
"returns": false, | ||
"immutable": true, | ||
"only": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"description": "identify record as MU", | ||
"skip": false, | ||
"input": { | ||
"leader": "01234cji a22005894i 4500", | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"}, | ||
{"tag": "006", "value": "s|||||||||||||||||"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "getTypeOfMaterial", "args": {"self": true}} | ||
], | ||
"returns": "MU", | ||
"immutable": true, | ||
"only": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"description": "fail to determine the type of material (illegal LDR/06)", | ||
"skip": false, | ||
"input": { | ||
"leader": "01234czb a22005894i 4500", | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"}, | ||
{"tag": "006", "value": "s|||||||||||||||||"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "getTypeOfMaterial", "args": {"self": true}} | ||
], | ||
"returns": false, | ||
"immutable": true, | ||
"only": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"description": "isBK: true", | ||
"skip": false, | ||
"input": { | ||
"leader": "01234cam a22005894i 4500", | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "isTypeOfMaterial", "args": {"self": true, "target": "BK"}} | ||
], | ||
"returns": true, | ||
"immutable": true, | ||
"only": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"description": "isBK: false since LDR/07", | ||
"skip": false, | ||
"input": { | ||
"leader": "01234cab a22005894i 4500", | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "isTypeOfMaterial", "args": {"self": true, "target": "BK"}} | ||
], | ||
"returns": false, | ||
"immutable": true, | ||
"only": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"description": "isBK: false since LDR/06", | ||
"skip": false, | ||
"input": { | ||
"leader": "01234cmm a22005894i 4500", | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "isTypeOfMaterial", "args": {"self": true, "target": "BK"}} | ||
], | ||
"returns": false, | ||
"immutable": true, | ||
"only": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"description": "isBK: false since no LDR", | ||
"skip": false, | ||
"input": { | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "isTypeOfMaterial", "args": {"self": true, "target": "BK"}} | ||
], | ||
"returns": false, | ||
"immutable": true, | ||
"only": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"description": "isBK: false since too short leader", | ||
"skip": false, | ||
"input": { | ||
"leader": "01234", | ||
"fields": | ||
[ | ||
{"tag": "001", "value": "bar"} | ||
] | ||
}, | ||
"operations": [ | ||
{ "name": "isTypeOfMaterial", "args": {"self": true, "target": "BK"}} | ||
], | ||
"returns": false, | ||
"immutable": true, | ||
"only": false | ||
} |
Oops, something went wrong.