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/static-module/test/scope/block.js | 7 lines | 178 B | application/javascript | JavascriptLexer |
var fs = require('fs');
{ // hello block scope
let fs = { readFileSync: () => 'abc' }
T.equal(fs.readFileSync(), 'abc')
}
T.equal( fs.readFileSync(), 'read the file!' )