Skip to content

Commit

Permalink
drop encode (escape) & decode (unescape)
Browse files Browse the repository at this point in the history
  • Loading branch information
Knovour committed Dec 22, 2021
1 parent e96b33d commit cccf31b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function pageNotFound($, pageNF) { // Not completed tested yet
const value = grabValue($(json.elem), json)
switch(check) {
case 'equal': return _.isEqual(value, json.check[1])
default: return value
default: return value
}
})
}
Expand Down Expand Up @@ -174,10 +174,8 @@ _.mixin({
append(data, arg) {
return data + arg
},
encode: escape,
encodeURI,
encodeURIComponent,
decode: unescape,
decodeURI,
decodeURIComponent,
})
Expand Down

0 comments on commit cccf31b

Please sign in to comment.