@mathigon/hilbert
Advanced tools
Comparing version 1.1.23 to 1.1.24
import { SpecialFunction } from './symbols'; | ||
declare const OPERATORS: readonly ["add", "sub", "mul", "div", "sup"]; | ||
type Functions = typeof OPERATORS[number] | SpecialFunction; | ||
type Functions = 'add' | 'sub' | 'mul' | 'div' | 'sup' | SpecialFunction; | ||
export type Interval = [number, number]; | ||
@@ -5,0 +4,0 @@ export declare const width: (a: Interval) => number; |
@@ -21,4 +21,4 @@ "use strict"; | ||
// src/index.ts | ||
var src_exports = {}; | ||
__export(src_exports, { | ||
var index_exports = {}; | ||
__export(index_exports, { | ||
ExprElement: () => ExprElement, | ||
@@ -38,3 +38,3 @@ ExprError: () => ExprError, | ||
}); | ||
module.exports = __toCommonJS(src_exports); | ||
module.exports = __toCommonJS(index_exports); | ||
@@ -41,0 +41,0 @@ // src/errors.ts |
{ | ||
"name": "@mathigon/hilbert", | ||
"version": "1.1.23", | ||
"version": "1.1.24", | ||
"license": "MIT", | ||
@@ -34,10 +34,10 @@ "homepage": "https://mathigon.io/hilbert", | ||
"dependencies": { | ||
"@mathigon/core": "1.1.22", | ||
"@mathigon/fermat": "1.1.23" | ||
"@mathigon/core": "1.1.23", | ||
"@mathigon/fermat": "1.1.24" | ||
}, | ||
"devDependencies": { | ||
"@types/tape": "5.6.4", | ||
"@typescript-eslint/eslint-plugin": "8.14.0", | ||
"@typescript-eslint/parser": "8.14.0", | ||
"esbuild": "0.24.0", | ||
"@types/tape": "5.8.1", | ||
"@typescript-eslint/eslint-plugin": "8.23.0", | ||
"@typescript-eslint/parser": "8.23.0", | ||
"esbuild": "0.24.2", | ||
"eslint": "8.57.1", | ||
@@ -48,4 +48,4 @@ "eslint-plugin-import": "2.31.0", | ||
"tslib": "2.8.1", | ||
"typescript": "5.6.3" | ||
"typescript": "5.7.3" | ||
} | ||
} |
@@ -11,4 +11,3 @@ // ============================================================================= | ||
const OPERATORS = ['add', 'sub', 'mul', 'div', 'sup'] as const; | ||
type Functions = typeof OPERATORS[number] | SpecialFunction; | ||
type Functions = 'add'|'sub'|'mul'|'div'|'sup'|SpecialFunction; | ||
@@ -15,0 +14,0 @@ |
@@ -50,3 +50,3 @@ // ============================================================================= | ||
return !!matches; | ||
} catch (e) { | ||
} catch { | ||
return false; | ||
@@ -53,0 +53,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
294465
3863
+ Added@mathigon/core@1.1.23(transitive)
+ Added@mathigon/fermat@1.1.24(transitive)
- Removed@mathigon/core@1.1.22(transitive)
- Removed@mathigon/fermat@1.1.23(transitive)
Updated@mathigon/core@1.1.23
Updated@mathigon/fermat@1.1.24