Closed paulmillr closed 12 years ago
What do you think about making this argument implicit in Function::sync()?
this
Function::sync()
fs.readFile.sync('file.txt') is more readable as compared to fs.readFile.sync(null, 'file.txt').
fs.readFile.sync('file.txt')
fs.readFile.sync(null, 'file.txt')
Hi Paul,
Stop. Think about it again. At least 10 minutes. And then, if you think this will work, I'll reopen this issue ;)
What do you think about making
this
argument implicit inFunction::sync()
?fs.readFile.sync('file.txt')
is more readable as compared tofs.readFile.sync(null, 'file.txt')
.