c571a01436ba2992478a9d6846d9fefe1ad587189d7f5286f4c9ffaa602ed0dd5157947878190b439f79170b62524f56b098576c8ded6ec70205ca26a10c82 351 B

123456789
  1. 'use strict';
  2. var fails = require('../internals/fails');
  3. module.exports = !fails(function () {
  4. // eslint-disable-next-line es/no-function-prototype-bind -- safe
  5. var test = (function () { /* empty */ }).bind();
  6. // eslint-disable-next-line no-prototype-builtins -- safe
  7. return typeof test != 'function' || test.hasOwnProperty('prototype');
  8. });