File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- # Neo4j Driver 1.6 for Javascript
1
+ # Neo4j Driver 1.6 for JavaScript
2
2
3
3
4
4
A database driver for Neo4j 3.0.0+.
@@ -265,7 +265,7 @@ While there is no need to grab admin right if you are running tests against an e
265
265
266
266
## A note on numbers and the Integer type
267
267
The Neo4j type system includes 64-bit integer values.
268
- However, Javascript can only safely represent integers between ` -(2 ` <sup >` 53 ` </sup >` - 1) ` and ` (2 ` <sup >` 53 ` </sup >` - 1) ` .
268
+ However, JavaScript can only safely represent integers between ` -(2 ` <sup >` 53 ` </sup >` - 1) ` and ` (2 ` <sup >` 53 ` </sup >` - 1) ` .
269
269
In order to support the full Neo4j type system, the driver will not automatically convert to javascript integers.
270
270
Any time the driver receives an integer value from Neo4j, it will be represented with an internal integer type by the driver.
271
271
Original file line number Diff line number Diff line change 1
- # Documentation for Neo4j Bolt Driver for Javascript
1
+ # Documentation for Neo4j Bolt Driver for JavaScript
2
2
The docs are generated with [ esdoc] ( https://github.com/esdoc/esdoc ) , which is added
3
3
as a devDependency to this project.
4
4
Original file line number Diff line number Diff line change 38
38
"enable" : true
39
39
},
40
40
"brand" : {
41
- "title" : " Neo4j Bolt Driver 1.6 for Javascript " ,
41
+ "title" : " Neo4j Bolt Driver 1.6 for JavaScript " ,
42
42
"repository" : " https://github.com/neo4j/neo4j-javascript-driver"
43
43
}
44
44
}
Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ class Integer {
57
57
58
58
// The internal representation of an Integer is the two given signed, 32-bit values.
59
59
// We use 32-bit pieces because these are the size of integers on which
60
- // Javascript performs bit-operations. For operations like addition and
60
+ // JavaScript performs bit-operations. For operations like addition and
61
61
// multiplication, we split each number into 16 bit pieces, which can easily be
62
- // multiplied within Javascript 's floating-point representation without overflow
62
+ // multiplied within JavaScript 's floating-point representation without overflow
63
63
// or change in sign.
64
64
//
65
65
// In the algorithms below, we frequently reduce the negative case to the
You can’t perform that action at this time.
0 commit comments