-
If we want to validate an object with optional parameters for a spread:
```ts
type Hotdog = {
length: number;
topping: string;
}
function patchHotdog(hotdog: Hotdog, patchBody: unknown): H…
-
```
I ran into this problem while working with some new imagery.
With the attached imagery:
dcm = dicom.ReadFile( 'img3.dcm' )
dicom.WriteFile( 'img3out.dcm', dcm )
You receive "NotImplementedError:…
-
`ow.nullable.string`
instead of
`ow.any(ow.string, ow.null)`
A generic modifier for `|null|undefined` would also be useful. Maybe it is better if `optional` will also allow `null`? In most cases,…
-
(base) D:\project_dir\HJLReID\MDRSREID>python demo.py --model_name MDRS --exp_dir /project_dir/weights_results/HJLReID1/MDRS_ADAM_random_erasing_margin_0.3_market_best --default_config_path /pro…
-
### Issue Description
I just got a new QMK keyboard RK61, But I have trouble to find the QMK firmware source, Has anyone used this QMK keyboard before?
![image](https://github.com/user-attachmen…
-
Could there be a ow.mandatory that throws by using it as default arg?
```
function getPage(identifier = ow.mandatory()) {
ow(identifier, ow.string);
}
```
```
ArgumentError: Expected a …
-
```
I ran into this problem while working with some new imagery.
With the attached imagery:
dcm = dicom.ReadFile( 'img3.dcm' )
dicom.WriteFile( 'img3out.dcm', dcm )
You receive "NotImplementedError:…
-
```
I ran into this problem while working with some new imagery.
With the attached imagery:
dcm = dicom.ReadFile( 'img3.dcm' )
dicom.WriteFile( 'img3out.dcm', dcm )
You receive "NotImplementedError:…
-
Currently, `ow()` funciton is of [type Assertion Functions](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#assertion-functions).
https://github.com/sindresorhus/ow/b…
-
Hi,
First of all thanks for this great Toolbox and sorry about the rather long message.
I'm having issues trying to write nonstationary 2D spectra files for SWAN and I'm not sure if I'm doing some…