@borgar/fx 4.7.0 → 4.8.0
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/dist/fx.d.ts +80 -34
- package/dist/fx.js +1 -1
- package/docs/API.md +168 -82
- package/docs/AST_format.md +45 -15
- package/docs/Prefixes.md +1 -1
- package/lib/a1.js +2 -0
- package/lib/astTypes.js +96 -0
- package/lib/constants.js +3 -0
- package/lib/index.spec.js +67 -0
- package/lib/lexer.js +51 -0
- package/lib/lexer.spec.js +63 -0
- package/lib/lexerParts.js +5 -0
- package/lib/parser.js +235 -33
- package/lib/parser.spec.js +380 -89
- package/lib/rc.js +2 -0
- package/package.json +1 -1
package/lib/rc.js
CHANGED
|
@@ -22,6 +22,7 @@ function toCoord (value, isAbs) {
|
|
|
22
22
|
/**
|
|
23
23
|
* Stringify a range object into R1C1 syntax.
|
|
24
24
|
*
|
|
25
|
+
* @ignore
|
|
25
26
|
* @private
|
|
26
27
|
* @see parseR1C1Ref
|
|
27
28
|
* @param {RangeR1C1} range A range object
|
|
@@ -132,6 +133,7 @@ function parseR1C1Part (ref) {
|
|
|
132
133
|
* Parse a simple string reference to an R1C1 range into a range object.
|
|
133
134
|
*
|
|
134
135
|
* @private
|
|
136
|
+
* @ignore
|
|
135
137
|
* @see parseA1Ref
|
|
136
138
|
* @param {string} rangeString A range string
|
|
137
139
|
* @returns {(RangeR1C1|null)} An object representing a valid reference or null if it is invalid.
|