Skip to content

Commit bd702d2

Browse files
CommanderRootdougwilson
authored andcommittedMar 20, 2022
lint: remove deprecated String.prototype.substr
closes #459
1 parent 96df60f commit bd702d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/types/json.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function json (options) {
122122

123123
// assert charset per RFC 7159 sec 8.1
124124
var charset = getCharset(req) || 'utf-8'
125-
if (charset.substr(0, 4) !== 'utf-') {
125+
if (charset.slice(0, 4) !== 'utf-') {
126126
debug('invalid charset')
127127
next(createError(415, 'unsupported charset "' + charset.toUpperCase() + '"', {
128128
charset: charset,

0 commit comments

Comments
 (0)
Please sign in to comment.