File tree 9 files changed +430
-44
lines changed
9 files changed +430
-44
lines changed Original file line number Diff line number Diff line change
1
+ # Node.js can run TypeScript files with
2
+ #
3
+ # node --test --env-file .ts-node.env ./path/to/file.ts
4
+ #
5
+ NODE_OPTIONS = " --no-warnings=ExperimentalWarning --loader ts-node/esm"
Original file line number Diff line number Diff line change @@ -11,4 +11,3 @@ npm install prettier typescript @types/node --no-save
11
11
## Documentation website
12
12
13
13
Just open [ index.html] ( index.html ) in your browser.
14
-
Original file line number Diff line number Diff line change 3
3
> means completeness and balancing, from the Arabic word الجبر
4
4
5
5
See documentation here: https://fibo.github.io/algebra
6
-
Original file line number Diff line number Diff line change 1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
< html lang ="en ">
3
3
< head >
4
4
< meta charset ="UTF-8 " />
@@ -15,32 +15,32 @@ <h1>algebra sets</h1>
15
15
16
16
<!-- Code from src/set_test.ts -->
17
17
< script type ="text/typescript " id ="set-script ">
18
- import { AlgebraSet } from "algebra" ;
18
+ import { AlgebraSet } from "algebra" ;
19
19
20
- const Boole : AlgebraSet < boolean > = {
21
- element ( a ) {
22
- if ( typeof a !== "boolean" ) throw new TypeError ( ) ;
23
- return {
24
- equal ( b ) {
25
- return a === b ;
26
- } ,
27
- valueOf ( ) {
28
- return a ;
29
- } ,
30
- toString ( ) {
31
- return a . toString ( ) ;
32
- } ,
33
- } ;
34
- } ,
35
- includes(arg) {
36
- return typeof arg === "boolean" ;
37
- } ,
38
- equal(a, b) {
39
- return (
40
- typeof a === "boolean" && typeof b === "boolean" && a === b
41
- ) ;
42
- } ,
43
- } ;
20
+ const Boole : AlgebraSet < boolean > = {
21
+ element ( a ) {
22
+ if ( typeof a !== "boolean" ) throw new TypeError ( ) ;
23
+ return {
24
+ equal ( b ) {
25
+ return a === b ;
26
+ } ,
27
+ valueOf ( ) {
28
+ return a ;
29
+ } ,
30
+ toString ( ) {
31
+ return a . toString ( ) ;
32
+ } ,
33
+ } ;
34
+ } ,
35
+ includes(arg) {
36
+ return typeof arg === "boolean" ;
37
+ } ,
38
+ equal(a, b) {
39
+ return (
40
+ typeof a === "boolean" && typeof b === "boolean" && a === b
41
+ ) ;
42
+ } ,
43
+ } ;
44
44
</ script >
45
45
</ main >
46
46
Original file line number Diff line number Diff line change 1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
< html lang ="en ">
3
3
< head >
4
4
< meta charset ="UTF-8 " />
You can’t perform that action at this time.
0 commit comments