Use includes instead of indexOf

This commit is contained in:
Maximilian Krög
2022-08-05 00:36:16 +02:00
parent 5e34b9aa20
commit 0b945f2321
26 changed files with 50 additions and 57 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ exports.publish = function (data, opts) {
if (
constructor &&
constructor.substr(-1) === '_' &&
constructor.indexOf('module:') === -1
!constructor.includes('module:')
) {
assert.strictEqual(
doc.inherited,