Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
(function (strTest) {
|
||||
|
||||
// s -> s
|
||||
function strip(s) {
|
||||
return s.split('').filter(function (x) {
|
||||
var n = x.charCodeAt(0);
|
||||
|
||||
return 31 < n && 127 > n;
|
||||
}).join('');
|
||||
}
|
||||
|
||||
return strip(strTest);
|
||||
|
||||
})("\ba\x00b\n\rc\fd\xc3");
|
||||
|
|
@ -0,0 +1 @@
|
|||
"abcd"
|
||||
Loading…
Add table
Add a link
Reference in a new issue