mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
11 lines
345 B
JavaScript
11 lines
345 B
JavaScript
|
|
'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,no-throw-literal -- required for testing
|
||
|
|
method.call(null, argument || function () { throw 1; }, 1);
|
||
|
|
});
|
||
|
|
};
|