document-ir 0.0.13 → 0.0.14
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.
|
@@ -827,6 +827,9 @@ export class IdentityTransformer {
|
|
|
827
827
|
if (node.hidden) {
|
|
828
828
|
result.hidden = node.hidden;
|
|
829
829
|
}
|
|
830
|
+
if (node.readingDifficultyMultiplier) {
|
|
831
|
+
result.readingDifficultyMultiplier = node.readingDifficultyMultiplier;
|
|
832
|
+
}
|
|
830
833
|
return result;
|
|
831
834
|
}
|
|
832
835
|
async transform(node) {
|
package/esm/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -830,6 +830,9 @@ class IdentityTransformer {
|
|
|
830
830
|
if (node.hidden) {
|
|
831
831
|
result.hidden = node.hidden;
|
|
832
832
|
}
|
|
833
|
+
if (node.readingDifficultyMultiplier) {
|
|
834
|
+
result.readingDifficultyMultiplier = node.readingDifficultyMultiplier;
|
|
835
|
+
}
|
|
833
836
|
return result;
|
|
834
837
|
}
|
|
835
838
|
async transform(node) {
|