@mathigon/fermat
Advanced tools
Comparing version 0.1.0 to 0.1.1
// ============================================================================= | ||
// Core.js | Arrays | ||
// Fermat.js | ||
// (c) Mathigon | ||
@@ -4,0 +4,0 @@ // ============================================================================= |
{ | ||
"name": "@mathigon/fermat", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Powerful mathematics, statistics and geometry library for JavaScript.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -19,11 +19,3 @@ // ============================================================================ | ||
export function square(x) { | ||
return x * x; | ||
} | ||
export function cube(x) { | ||
return x * x * x; | ||
} | ||
// ----------------------------------------------------------------------------- | ||
@@ -30,0 +22,0 @@ // String Conversion |
@@ -8,4 +8,4 @@ // ============================================================================= | ||
import { tabulate, total, list, isBetween } from '@mathigon/core'; | ||
import { nearlyEquals, square, cube } from './arithmetic'; | ||
import { tabulate, total, list, isBetween, square, cube } from '@mathigon/core'; | ||
import { nearlyEquals } from './arithmetic'; | ||
import { permutations } from './combinatorics'; | ||
@@ -12,0 +12,0 @@ import { Vector } from './vector'; |
@@ -8,4 +8,3 @@ // ============================================================================ | ||
import { each, some, tabulate } from '@mathigon/core'; | ||
import { square } from './arithmetic'; | ||
import { each, some, tabulate, square } from '@mathigon/core'; | ||
import { integrate } from './numeric'; | ||
@@ -12,0 +11,0 @@ |
@@ -8,4 +8,3 @@ // ============================================================================ | ||
import { total } from '@mathigon/core'; | ||
import { square } from './arithmetic'; | ||
import { total, square } from '@mathigon/core'; | ||
@@ -12,0 +11,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
85903
2458