mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-07 20:40:05 +00:00
chore(docs): fixing missing param
This commit is contained in:
@@ -230,10 +230,10 @@ run;
|
|||||||
%webout(CLOSE) /* Close the JSON and add default variables */
|
%webout(CLOSE) /* Close the JSON and add default variables */
|
||||||
```
|
```
|
||||||
|
|
||||||
By default, special SAS numeric missings (_a-Z) are converted to `null` in the JSON. If you'd like to preserve these, use the `nullify=NO` option as follows:
|
By default, special SAS numeric missings (_a-Z) are converted to `null` in the JSON. If you'd like to preserve these, use the `missing=STRING` option as follows:
|
||||||
|
|
||||||
```sas
|
```sas
|
||||||
%webout(OBJ,a,nullify=NO)
|
%webout(OBJ,a,missing=STRING)
|
||||||
```
|
```
|
||||||
In this case, special missings (such as `.a`, `.b`) are converted to javascript string values (`'A', 'B'`).
|
In this case, special missings (such as `.a`, `.b`) are converted to javascript string values (`'A', 'B'`).
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user