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/set-immediate-shim/readme.md | 31 lines | 558 B | text/x-minidsrc | MarkdownLexer |

set-immediate-shim Build Status

Simple setImmediate shim

Install

$ npm install --save set-immediate-shim

Usage

var setImmediateShim = require('set-immediate-shim');

setImmediateShim(function () {
    console.log('2');
});

console.log('1');

//=> 1
//=> 2

License

MIT © Sindre Sorhus