1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-22 10:41:20 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Allan Bowe
506cf1812f fix: deal with dashes in sysencoding 2021-06-08 16:59:43 +03:00
Allan Bowe
8cc0eb0dd7 Merge pull request #42 from sasjs/issue41
closes #42 Issue41
2021-06-03 22:44:16 +03:00
Allan Bowe
3f49925d01 Merge pull request #40 from sasjs/dependabot/npm_and_yarn/ws-7.4.6
chore(deps): bump ws from 7.4.5 to 7.4.6
2021-06-01 17:58:49 +03:00
dependabot[bot]
c51c9c2ca9 chore(deps): bump ws from 7.4.5 to 7.4.6
Bumps [ws](https://github.com/websockets/ws) from 7.4.5 to 7.4.6.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/7.4.5...7.4.6)

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-31 02:08:52 +00:00
4 changed files with 7 additions and 7 deletions

View File

@@ -9041,7 +9041,7 @@ data _null_;
put '%local i tempds jsonengine; '; put '%local i tempds jsonengine; ';
put ' '; put ' ';
put '/* see https://github.com/sasjs/core/issues/41 */ '; put '/* see https://github.com/sasjs/core/issues/41 */ ';
put '%if %upcase(&SYSENCODING)=WLATIN1 %then %let jsonengine=PROCJSON; '; put '%if "%upcase(&SYSENCODING)"="WLATIN1" %then %let jsonengine=PROCJSON; ';
put '%else %let jsonengine=DATASTEP; '; put '%else %let jsonengine=DATASTEP; ';
put ' '; put ' ';
put ' '; put ' ';
@@ -12532,7 +12532,7 @@ run;
%local i tempds jsonengine; %local i tempds jsonengine;
/* see https://github.com/sasjs/core/issues/41 */ /* see https://github.com/sasjs/core/issues/41 */
%if %upcase(&SYSENCODING)=WLATIN1 %then %let jsonengine=PROCJSON; %if "%upcase(&SYSENCODING)"="WLATIN1" %then %let jsonengine=PROCJSON;
%else %let jsonengine=DATASTEP; %else %let jsonengine=DATASTEP;

View File

@@ -269,7 +269,7 @@ data _null_;
put '%local i tempds jsonengine; '; put '%local i tempds jsonengine; ';
put ' '; put ' ';
put '/* see https://github.com/sasjs/core/issues/41 */ '; put '/* see https://github.com/sasjs/core/issues/41 */ ';
put '%if %upcase(&SYSENCODING)=WLATIN1 %then %let jsonengine=PROCJSON; '; put '%if "%upcase(&SYSENCODING)"="WLATIN1" %then %let jsonengine=PROCJSON; ';
put '%else %let jsonengine=DATASTEP; '; put '%else %let jsonengine=DATASTEP; ';
put ' '; put ' ';
put ' '; put ' ';

View File

@@ -39,7 +39,7 @@
%local i tempds jsonengine; %local i tempds jsonengine;
/* see https://github.com/sasjs/core/issues/41 */ /* see https://github.com/sasjs/core/issues/41 */
%if %upcase(&SYSENCODING)=WLATIN1 %then %let jsonengine=PROCJSON; %if "%upcase(&SYSENCODING)"="WLATIN1" %then %let jsonengine=PROCJSON;
%else %let jsonengine=DATASTEP; %else %let jsonengine=DATASTEP;

6
package-lock.json generated
View File

@@ -1579,9 +1579,9 @@
"dev": true "dev": true
}, },
"ws": { "ws": {
"version": "7.4.5", "version": "7.4.6",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz", "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
"integrity": "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==", "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
"dev": true "dev": true
}, },
"xml-name-validator": { "xml-name-validator": {