Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
e86f23a2
Unverified
Commit
e86f23a2
authored
Feb 18, 2019
by
yann300
Committed by
GitHub
Feb 18, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1124 from eswarasai/master
Updated regex in Memory Debugger to exclude replacing space with '?'
parents
a2186425
66ebe01e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
.gitignore
.gitignore
+1
-0
uiHelper.js
remix-lib/src/helpers/uiHelper.js
+1
-1
No files found.
.gitignore
View file @
e86f23a2
...
@@ -2,6 +2,7 @@ build
...
@@ -2,6 +2,7 @@ build
node_modules
node_modules
npm-debug.log
npm-debug.log
lint.xml
lint.xml
.idea
.vscode
.vscode
test-browser/reports/*
test-browser/reports/*
babelify-src
babelify-src
...
...
remix-lib/src/helpers/uiHelper.js
View file @
e86f23a2
...
@@ -23,7 +23,7 @@ module.exports = {
...
@@ -23,7 +23,7 @@ module.exports = {
for
(
var
k
=
0
;
k
<
memorySlot
.
length
;
k
+=
2
)
{
for
(
var
k
=
0
;
k
<
memorySlot
.
length
;
k
+=
2
)
{
var
raw
=
memorySlot
.
substr
(
k
,
2
)
var
raw
=
memorySlot
.
substr
(
k
,
2
)
var
ascii
=
String
.
fromCharCode
(
parseInt
(
raw
,
16
))
var
ascii
=
String
.
fromCharCode
(
parseInt
(
raw
,
16
))
ascii
=
ascii
.
replace
(
/
\W
/g
,
'?'
)
ascii
=
ascii
.
replace
(
/
[^\w\s]
/
,
'?'
)
if
(
ascii
===
''
)
{
if
(
ascii
===
''
)
{
ascii
=
'?'
ascii
=
'?'
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment