Show More
Commit Description:
force log out when password change
Commit Description:
force log out when password change
References:
File last commit:
Show/Diff file:
Action:
node_modules/es5-ext/array/#/find-index/shim.js
| 26 lines
| 539 B
| application/javascript
| JavascriptLexer
|
r789 | "use strict"; | |||
var callable = require("../../../object/valid-callable") | ||||
, ensureValue = require("../../../object/valid-value") | ||||
, some = Array.prototype.some | ||||
, apply = Function.prototype.apply; | ||||
module.exports = function (predicate/*, thisArg*/) { | ||||
var k, self; | ||||
self = Object(ensureValue(this)); | ||||
callable(predicate); | ||||
return some.call( | ||||
self, | ||||
function (value, index) { | ||||
if (apply.call(predicate, this, arguments)) { | ||||
k = index; | ||||
return true; | ||||
} | ||||
return false; | ||||
}, | ||||
arguments[1] | ||||
) | ||||
? k | ||||
: -1; | ||||
}; | ||||