puvox-library 1.0.78 → 1.0.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/library_standard.js +1 -1
- package/package.json +1 -1
package/library_standard.js
CHANGED
@@ -3259,7 +3259,7 @@ class PuvoxLibrary {
|
|
3259
3259
|
if (!this.exists(filePath)){
|
3260
3260
|
return defaultContent;
|
3261
3261
|
}
|
3262
|
-
return this.fs().readFileSync(filePath);
|
3262
|
+
return this.fs().readFileSync(filePath, 'utf8');
|
3263
3263
|
}
|
3264
3264
|
write(filePath, content){
|
3265
3265
|
const dir = this.path().dirname(filePath);
|