1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-03 00:30:05 +01:00
HackMyResume/dist/utils/file-contains.js

15 lines
271 B
JavaScript
Raw Normal View History

2016-01-27 10:29:26 +00:00
/**
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);
2016-02-02 02:14:36 +00:00
//# sourceMappingURL=file-contains.js.map