@bitbybit-dev/base 1.0.0-rc.2 → 1.0.0

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.
@@ -1,3 +1,3 @@
1
1
  export class GlobalCDNProvider {
2
2
  }
3
- GlobalCDNProvider.BITBYBIT_CDN_URL = "https://git-cdn.bitbybit.dev/v1.0.0-rc.2";
3
+ GlobalCDNProvider.BITBYBIT_CDN_URL = "https://git-cdn.bitbybit.dev/v1.0.0";
@@ -466,7 +466,7 @@ export declare namespace Math {
466
466
  constructor(expression?: string);
467
467
  /**
468
468
  * Arithmetic expression containing numbers, +, -, *, /, and parentheses
469
- * @default "1+1"
469
+ * @default 1+1
470
470
  */
471
471
  expression: string;
472
472
  }
@@ -609,7 +609,7 @@ export var Math;
609
609
  constructor(expression) {
610
610
  /**
611
611
  * Arithmetic expression containing numbers, +, -, *, /, and parentheses
612
- * @default "1+1"
612
+ * @default 1+1
613
613
  */
614
614
  this.expression = "1+1";
615
615
  if (expression !== undefined) {
@@ -465,7 +465,7 @@ export declare class MathBitByBit {
465
465
  * Safely evaluates a simple arithmetic expression containing only
466
466
  * numbers, +, -, *, /, parentheses, and whitespace.
467
467
  * Uses the shunting-yard algorithm — no eval/Function.
468
- * Example: "(3+2)*4" → 20, "10/3" → 3.3333...
468
+ * Example: '(3+2)*4' → 20, '10/3' → 3.3333...
469
469
  * @param inputs arithmetic expression string
470
470
  * @returns evaluated result
471
471
  * @group operations
@@ -664,7 +664,7 @@ export class MathBitByBit {
664
664
  * Safely evaluates a simple arithmetic expression containing only
665
665
  * numbers, +, -, *, /, parentheses, and whitespace.
666
666
  * Uses the shunting-yard algorithm — no eval/Function.
667
- * Example: "(3+2)*4" → 20, "10/3" → 3.3333...
667
+ * Example: '(3+2)*4' → 20, '10/3' → 3.3333...
668
668
  * @param inputs arithmetic expression string
669
669
  * @returns evaluated result
670
670
  * @group operations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitbybit-dev/base",
3
- "version": "1.0.0-rc.2",
3
+ "version": "1.0.0",
4
4
  "description": "Bit By Bit Developers Base CAD Library to Program Geometry",
5
5
  "main": "index.js",
6
6
  "repository": {