From 9f00cd646eadd0d885069d607fa85c1dbc99a931 Mon Sep 17 00:00:00 2001 From: munja Date: Thu, 30 Dec 2021 09:56:08 +0000 Subject: [PATCH] chore(readme): support for special missings --- sasjs-tests/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sasjs-tests/README.md b/sasjs-tests/README.md index 6296cfe..53b0a5f 100644 --- a/sasjs-tests/README.md +++ b/sasjs-tests/README.md @@ -47,7 +47,7 @@ npm i -g copyfiles ``` and then run to build: ```bash -npm run update:adapter && npm run build +npm run update:adapter && npm run build ``` when it finishes run to deploy: ```bash @@ -70,7 +70,7 @@ parmcards4; %webout(FETCH) %webout(OPEN) %macro x(); - %do i=1 %to &_webin_file_count; %webout(OBJ,&&_webin_name&i) %end; + %do i=1 %to &_webin_file_count; %webout(OBJ,&&_webin_name&i,missing=STRING) %end; %mend; %x() %webout(CLOSE) ;;;; @@ -79,7 +79,7 @@ parmcards4; %webout(FETCH) %webout(OPEN) %macro x(); - %do i=1 %to &_webin_file_count; %webout(ARR,&&_webin_name&i) %end; + %do i=1 %to &_webin_file_count; %webout(ARR,&&_webin_name&i,missing=STRING) %end; %mend; %x() %webout(CLOSE) ;;;; @@ -111,7 +111,7 @@ parmcards4; %macro x(); %do i=1 %to %sysfunc(countw(&sasjs_tables)); %let table=%scan(&sasjs_tables,&i); - %webout(OBJ,&table) + %webout(OBJ,&table,missing=STRING) %end; %mend; %x() @@ -125,7 +125,7 @@ parmcards4; %macro x(); %do i=1 %to %sysfunc(countw(&sasjs_tables)); %let table=%scan(&sasjs_tables,&i); - %webout(ARR,&table) + %webout(ARR,&table,missing=STRING) %end; %mend; %x()