@amindunited/read-file
Version:
A Promise wrapper around fs.readFile
25 lines (21 loc) • 496 B
JavaScript
/**
* @license
* Copyright Robin Buckley. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file
*/
;
const fs = require('fs');
module.exports = function readFile (filePath){
const promise = new Promise((resolve, reject) =>{
fs.readFile(filePath, 'utf8', (err, contents) => {
if (!err) {
resolve(contents);
} else {
reject(err);
}
});
});
return promise;
}