id: ts-function-constructor
valid:
  - 'function f() {}'
  - 'const f = () => {}'
  - 'Function.prototype'
invalid:
  - 'new Function("x", "return x")'
  - 'new Function("return 1")'
