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/es-abstract/helpers/callBind.js
| 17 lines
| 373 B
| application/javascript
| JavascriptLexer
|
r789 | 'use strict'; | |||
var bind = require('function-bind'); | ||||
var GetIntrinsic = require('../GetIntrinsic'); | ||||
var $Function = GetIntrinsic('%Function%'); | ||||
var $apply = $Function.apply; | ||||
var $call = $Function.call; | ||||
module.exports = function callBind() { | ||||
return bind.apply($call, arguments); | ||||
}; | ||||
module.exports.apply = function applyBind() { | ||||
return bind.apply($apply, arguments); | ||||
}; | ||||