Merge pull request #1124 from eswarasai/master

Updated regex in Memory Debugger to exclude replacing space with '?'
pull/7/head
yann300 6 years ago committed by GitHub
commit e86f23a210
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .gitignore
  2. 2
      remix-lib/src/helpers/uiHelper.js

1
.gitignore vendored

@ -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

@ -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 = '?'
} }

Loading…
Cancel
Save