mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
13 lines
228 B
JavaScript
13 lines
228 B
JavaScript
|
|
||
|
/**
|
||
|
Definition of the SyntaxErrorEx class.
|
||
|
@module file-contains.js
|
||
|
*/
|
||
|
|
||
|
(function() {
|
||
|
module.exports = function(file, needle) {
|
||
|
return require('fs').readFileSync(file, 'utf-8').indexOf(needle) > -1;
|
||
|
};
|
||
|
|
||
|
}).call(this);
|