All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.array-method-is-strict.js Maven / Gradle / Ivy

The newest version!
'use strict';
var fails = require('../internals/fails');

module.exports = function (METHOD_NAME, argument) {
  var method = [][METHOD_NAME];
  return !!method && fails(function () {
    // eslint-disable-next-line no-useless-call -- required for testing
    method.call(null, argument || function () { return 1; }, 1);
  });
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy