Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
5493d3cd5d | |||
bd50c122eb | |||
51f9d76a64 | |||
c2f809f9cf |
10
dist/smartfile.fs.js
vendored
10
dist/smartfile.fs.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "smartfile",
|
||||
"version": "4.2.8",
|
||||
"version": "4.2.10",
|
||||
"description": "offers smart ways to work with files in nodejs",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
|
@ -43,7 +43,11 @@ export let fileExists = function (filePath) {
|
||||
* Checks if given path points to an existing directory
|
||||
*/
|
||||
export let isDirectory = function (pathArg): boolean {
|
||||
return plugins.fsExtra.statSync(pathArg).isDirectory()
|
||||
try {
|
||||
return plugins.fsExtra.statSync(pathArg).isDirectory()
|
||||
} catch (err) {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -205,7 +209,6 @@ export let toObjectSync = function (filePathArg, fileTypeArg?) {
|
||||
*/
|
||||
export let toStringSync = function (filePath: string): string {
|
||||
let fileString: any = plugins.fsExtra.readFileSync(filePath, 'utf8')
|
||||
fileString = `${fileString}`
|
||||
return fileString
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user