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

node_modules.core-js.modules._strict-method.js Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
'use strict';
var fails = require('./_fails');

module.exports = function (method, arg) {
  return !!method && fails(function () {
    // eslint-disable-next-line no-useless-call
    arg ? method.call(null, function () { /* empty */ }, 1) : method.call(null);
  });
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy