Merge pull request #184 from CommanderRoot/refactor/rm-deprecated-substr

refactor: replace deprecated String.prototype.substr()
This commit is contained in:
Athanasius 2022-11-14 12:15:46 +00:00 committed by GitHub
commit f8245d8bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -241,7 +241,7 @@
// Loop results
$.each(schemasCount, function(schema, hits){
// IF TEST CONTINUE
if(schema.substr(schema.length - 4) == 'test')
if(schema.slice(-4) == 'test')
return;
var slug = makeSlug(schema);