ziko 0.54.3 → 0.54.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ziko",
3
- "version": "0.54.3",
3
+ "version": "0.54.4",
4
4
  "description": "A versatile JavaScript library offering a rich set of Hyperscript Based UI components, advanced mathematical utilities, interactivity ,animations, client side routing and more ...",
5
5
  "keywords": [
6
6
  "front-end",
@@ -77,7 +77,7 @@ class Complex{
77
77
  static Zero() {
78
78
  return new Complex(0, 0);
79
79
  }
80
- static Twidlle(N, K){
80
+ static Twiddle(N, K){
81
81
  const phi = -2 * Math.PI * K / N;
82
82
  return new Complex(
83
83
  Math.cos(phi),
@@ -38,7 +38,7 @@ export declare class Complex {
38
38
  nrth(n?: number): Complex;
39
39
 
40
40
  static Zero(): Complex;
41
- static Twuddle(N : number, K : number): Complex;
41
+ static Twiddle(N : number, K : number): Complex;
42
42
  static fromExpo(z: number, phi: number): Complex;
43
43
  static add(c: Complex, ...z: (number | Complex)[]): Complex;
44
44
  static sub(c: Complex, ...z: (number | Complex)[]): Complex;