namirasoft-core 1.5.8 → 1.5.9

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.
@@ -2,7 +2,7 @@ import { ConvertService } from "./ConvertService";
2
2
  export declare class EnvService extends ConvertService {
3
3
  static isDEBUG(): boolean;
4
4
  static isMUTE(): boolean;
5
- static isSTANDALNOE(): boolean;
5
+ static isSTANDALONE(): boolean;
6
6
  name: string;
7
7
  constructor(name: string, mandatory?: boolean);
8
8
  getNullString(): any;
@@ -11,8 +11,8 @@ class EnvService extends ConvertService_1.ConvertService {
11
11
  static isMUTE() {
12
12
  return new EnvService("NAMIRASOFT_MUTE", false).getBoolean(false);
13
13
  }
14
- static isSTANDALNOE() {
15
- return new EnvService("NAMIRASOFT_STANDALNOE", false).getBoolean(false);
14
+ static isSTANDALONE() {
15
+ return new EnvService("NAMIRASOFT_STANDALONE", false).getBoolean(false);
16
16
  }
17
17
  constructor(name, mandatory = false) {
18
18
  super(mandatory);
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.5.8",
11
+ "version": "1.5.9",
12
12
  "author": "Amir Abolhasani",
13
13
  "license": "MIT",
14
14
  "main": "./dist/index.js",
package/src/EnvService.ts CHANGED
@@ -12,9 +12,9 @@ export class EnvService extends ConvertService
12
12
  {
13
13
  return new EnvService("NAMIRASOFT_MUTE", false).getBoolean(false);
14
14
  }
15
- static isSTANDALNOE(): boolean
15
+ static isSTANDALONE(): boolean
16
16
  {
17
- return new EnvService("NAMIRASOFT_STANDALNOE", false).getBoolean(false);
17
+ return new EnvService("NAMIRASOFT_STANDALONE", false).getBoolean(false);
18
18
  }
19
19
  name: string;
20
20
  constructor(name: string, mandatory: boolean = false)