source: imaps-frontend/node_modules/core-js/internals/array-method-is-strict.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 329 bytes
RevLine 
[79a0317]1'use strict';
2var fails = require('../internals/fails');
3
4module.exports = function (METHOD_NAME, argument) {
5 var method = [][METHOD_NAME];
6 return !!method && fails(function () {
7 // eslint-disable-next-line no-useless-call -- required for testing
8 method.call(null, argument || function () { return 1; }, 1);
9 });
10};
Note: See TracBrowser for help on using the repository browser.