Add missing feature flag to isContructor helper file

The linter says this should include the Reflect.construct feature flag.
This commit is contained in:
Philip Chimento 2022-12-06 13:12:39 -08:00 committed by Philip Chimento
parent 7c9a885b79
commit 9821def022
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@
description: |
Test if a given function is a constructor function.
defines: [isConstructor]
features: [Reflect.construct]
---*/
function isConstructor(f) {