MCPcopy Index your code
hub / github.com/totaljs/framework / fsFileRead

Function fsFileRead

index.js:18842–18849  ·  view source on GitHub ↗
(filename, callback, a, b, c)

Source from the content-addressed store, hash-verified

18840});
18841
18842function fsFileRead(filename, callback, a, b, c) {
18843 U.queue('F.files', CONF.default_maxopenfiles, function(next) {
18844 Fs.readFile(filename, function(err, result) {
18845 next();
18846 callback(err, result, a, b, c);
18847 });
18848 });
18849}
18850
18851function fsFileExists(filename, callback, a, b, c) {
18852 U.queue('F.files', CONF.default_maxopenfiles, function(next) {

Callers 2

compile_fileFunction · 0.85
compile_mergeFunction · 0.85

Calls 2

callbackFunction · 0.85
nextFunction · 0.70

Tested by

no test coverage detected