puvox-library 1.0.65 → 1.0.66

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.
@@ -3181,26 +3181,26 @@ const puvox_library =
3181
3181
  // }
3182
3182
  // },
3183
3183
  file: {
3184
- set_Fs(module) { this.fs = module;},
3185
- set_Path(module) { this.path = module;},
3186
- set_Os(module) { this.os = module;},
3184
+ set_Fs(module) { this.module_fs = module;},
3185
+ set_Path(module) { this.module_path = module;},
3186
+ set_Os(module) { this.module_os = module;},
3187
3187
  fs() {
3188
- if(!this.fs) {
3188
+ if(!this.module_fs) {
3189
3189
  throw new Error ('at first, set puvox_library.set_FS(require("fs"))');
3190
3190
  }
3191
- return this.fs;
3191
+ return this.module_fs;
3192
3192
  },
3193
3193
  os() {
3194
- if(!this.os) {
3194
+ if(!this.module_os) {
3195
3195
  throw new Error ('at first, set puvox_library.set_FS(require("os"))');
3196
3196
  }
3197
- return this.os;
3197
+ return this.module_os;
3198
3198
  },
3199
3199
  path() {
3200
- if(!this.path) {
3200
+ if(!this.module_path) {
3201
3201
  throw new Error ('at first, set puvox_library.set_FS(require("path"))');
3202
3202
  }
3203
- return this.path;
3203
+ return this.module_path;
3204
3204
  },
3205
3205
  // ends with slash
3206
3206
  tempDir(){ return puvox_library.trailingSlash(this.os().tmpdir()); },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "puvox-library",
3
- "version": "1.0.65",
3
+ "version": "1.0.66",
4
4
  "description": "library-class-javascript",
5
5
  "main": "library_standard.js",
6
6
  "type": "module",