@nfdi4plants/arctrl 1.2.0 → 2.0.0-alpha.2
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/ARC.js +53 -35
- package/{Contracts/Contracts.ARCtrl.js → Contract/ARC.js} +4 -2
- package/Contract/ArcAssay.js +102 -0
- package/Contract/ArcInvestigation.js +78 -0
- package/Contract/ArcStudy.js +102 -0
- package/Contract/Contract.js +3 -3
- package/{Contracts/Contracts.Git.js → Contract/Git.js} +5 -5
- package/{ISA/ISA/ArcTypes → Core}/ArcTypes.js +307 -295
- package/Core/Comment.js +97 -0
- package/{ISA/ISA/JsonTypes → Core}/CommentList.js +12 -18
- package/Core/Conversion.js +1056 -0
- package/Core/Helper/Collections.js +318 -0
- package/Core/Helper/HashCodes.js +39 -0
- package/{ISA/ISA → Core/Helper}/Identifier.js +67 -2
- package/{ISA/ISA → Core/Helper}/Regex.js +3 -3
- package/{SemVer.js → Core/Helper/SemVer.js} +8 -8
- package/{ISA/ISA/ArcTypes → Core}/IdentifierSetters.js +1 -1
- package/Core/OntologyAnnotation.js +186 -0
- package/Core/OntologySourceReference.js +92 -0
- package/Core/Person.js +194 -0
- package/Core/Process/ColumnIndex.js +248 -0
- package/Core/Process/Component.js +188 -0
- package/{ISA/ISA/JsonTypes → Core/Process}/Data.js +8 -8
- package/{ISA/ISA/JsonTypes → Core/Process}/DataFile.js +3 -3
- package/Core/Process/Factor.js +109 -0
- package/{ISA/ISA/JsonTypes → Core/Process}/FactorValue.js +32 -13
- package/{ISA/ISA/JsonTypes → Core/Process}/Material.js +9 -9
- package/{ISA/ISA/JsonTypes → Core/Process}/MaterialAttribute.js +17 -17
- package/{ISA/ISA/JsonTypes → Core/Process}/MaterialAttributeValue.js +35 -16
- package/{ISA/ISA/JsonTypes → Core/Process}/MaterialType.js +3 -3
- package/{ISA/ISA/JsonTypes → Core/Process}/Process.js +46 -79
- package/{ISA/ISA/JsonTypes → Core/Process}/ProcessInput.js +42 -42
- package/{ISA/ISA/JsonTypes → Core/Process}/ProcessOutput.js +36 -36
- package/{ISA/ISA/JsonTypes → Core/Process}/ProcessParameterValue.js +26 -7
- package/{ISA/ISA/JsonTypes → Core/Process}/ProcessSequence.js +21 -25
- package/{ISA/ISA/JsonTypes → Core/Process}/Protocol.js +26 -57
- package/{ISA/ISA/JsonTypes → Core/Process}/ProtocolParameter.js +10 -10
- package/{ISA/ISA/JsonTypes → Core/Process}/Sample.js +12 -12
- package/{ISA/ISA/JsonTypes → Core/Process}/Source.js +9 -9
- package/{ISA/ISA/JsonTypes → Core/Process}/Value.js +13 -13
- package/Core/Publication.js +116 -0
- package/{ISA/ISA/ArcTypes → Core/Table}/ArcTable.js +43 -149
- package/Core/Table/ArcTableAux.js +532 -0
- package/{ISA/ISA/ArcTypes → Core/Table}/ArcTables.js +20 -32
- package/{ISA/ISA/ArcTypes → Core/Table}/CompositeCell.js +19 -76
- package/{ISA/ISA/ArcTypes → Core/Table}/CompositeColumn.js +6 -6
- package/{ISA/ISA/ArcTypes → Core/Table}/CompositeHeader.js +14 -34
- package/{Templates → Core}/Template.js +16 -17
- package/Core/Templates.js +84 -0
- package/FileSystem/Commit.js +2 -2
- package/FileSystem/FileSystem.js +4 -4
- package/FileSystem/FileSystemTree.js +46 -8
- package/FileSystem/Path.js +10 -2
- package/Json/ARC.js +25 -0
- package/Json/Assay.js +202 -0
- package/Json/Comment.js +130 -0
- package/Json/ConverterOptions.js +18 -0
- package/Json/Decode.js +128 -0
- package/Json/Encode.js +45 -0
- package/Json/Investigation.js +220 -0
- package/Json/OntologyAnnotation.js +169 -0
- package/Json/OntologySourceReference.js +122 -0
- package/Json/Person.js +250 -0
- package/Json/Process/AssayMaterials.js +22 -0
- package/Json/Process/Component.js +79 -0
- package/Json/Process/Data.js +102 -0
- package/Json/Process/DataFile.js +81 -0
- package/Json/Process/Factor.js +48 -0
- package/Json/Process/FactorValue.js +53 -0
- package/Json/Process/Material.js +107 -0
- package/Json/Process/MaterialAttribute.js +45 -0
- package/Json/Process/MaterialAttributeValue.js +70 -0
- package/Json/Process/MaterialType.js +60 -0
- package/Json/Process/Process.js +107 -0
- package/Json/Process/ProcessInput.js +59 -0
- package/Json/Process/ProcessOutput.js +71 -0
- package/Json/Process/ProcessParameterValue.js +69 -0
- package/Json/Process/ProcessSequence.js +53 -0
- package/Json/Process/PropertyValue.js +82 -0
- package/Json/Process/Protocol.js +147 -0
- package/Json/Process/ProtocolParameter.js +45 -0
- package/Json/Process/Sample.js +134 -0
- package/Json/Process/Source.js +101 -0
- package/Json/Process/StudyMaterials.js +24 -0
- package/Json/Process/Value.js +42 -0
- package/Json/Publication.js +142 -0
- package/Json/StringTable.js +44 -0
- package/Json/Study.js +306 -0
- package/{ISA/ISA.Json/ArcTypes → Json/Table}/ArcTable.js +53 -49
- package/Json/Table/CellTable.js +40 -0
- package/Json/Table/CompositeCell.js +65 -0
- package/{ISA/ISA.Json/ArcTypes → Json/Table}/CompositeHeader.js +22 -19
- package/Json/Table/Compression.js +38 -0
- package/Json/Table/IOType.js +37 -0
- package/Json/Table/OATable.js +40 -0
- package/Json/Table/Templates.js +107 -0
- package/Json/context/rocrate/isa_assay_context.js +32 -0
- package/Json/context/rocrate/isa_comment_context.js +23 -0
- package/Json/context/rocrate/isa_component_context.js +24 -0
- package/Json/context/rocrate/isa_data_context.js +25 -0
- package/Json/context/rocrate/isa_factor_context.js +25 -0
- package/Json/context/rocrate/isa_factor_value_context.js +23 -0
- package/{ISA/ISA.Json → Json}/context/rocrate/isa_investigation_context.js +5 -5
- package/{ISA/ISA.Json → Json}/context/rocrate/isa_material_attribute_context.js +4 -4
- package/Json/context/rocrate/isa_material_attribute_value_context.js +23 -0
- package/Json/context/rocrate/isa_material_context.js +26 -0
- package/Json/context/rocrate/isa_ontology_annotation_context.js +23 -0
- package/Json/context/rocrate/isa_ontology_source_reference_context.js +26 -0
- package/Json/context/rocrate/isa_organization_context.js +22 -0
- package/Json/context/rocrate/isa_person_context.js +33 -0
- package/Json/context/rocrate/isa_process_context.js +29 -0
- package/Json/context/rocrate/isa_process_parameter_value_context.js +23 -0
- package/Json/context/rocrate/isa_protocol_context.js +28 -0
- package/{ISA/ISA.Json → Json}/context/rocrate/isa_protocol_parameter_context.js +4 -4
- package/Json/context/rocrate/isa_publication_context.js +25 -0
- package/Json/context/rocrate/isa_sample_context.js +24 -0
- package/Json/context/rocrate/isa_source_context.js +25 -0
- package/Json/context/rocrate/isa_study_context.js +40 -0
- package/Json/context/rocrate/property_value_context.js +4 -0
- package/Json/context/rocrate/rocrate_context.js +23 -0
- package/Json.js +193 -0
- package/README.md +33 -12
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/AnnotationTable/ArcTable.js +12 -12
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/AnnotationTable/CompositeCell.js +8 -7
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/AnnotationTable/CompositeColumn.js +10 -10
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/AnnotationTable/CompositeHeader.js +10 -10
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/ArcAssay.js +11 -11
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/ArcInvestigation.js +34 -37
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/ArcStudy.js +12 -12
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/CollectionAux.js +7 -7
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/Assays.js +32 -32
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/Comment.js +5 -5
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/Contacts.js +28 -30
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/Conversions.js +22 -16
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/DesignDescriptors.js +1 -1
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/Factors.js +23 -22
- package/Spreadsheet/Metadata/OntologyAnnotation.js +64 -0
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/OntologySourceReference.js +22 -24
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/Protocols.js +17 -17
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/Publication.js +29 -31
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/SparseTable.js +23 -22
- package/{ISA/ISA.Spreadsheet → Spreadsheet}/Metadata/Study.js +38 -40
- package/{Templates/Template.Spreadsheet.js → Spreadsheet/Template.js} +31 -31
- package/Template.Web.js +27 -0
- package/WebRequest/WebRequest.Node.js +2 -2
- package/WebRequest/WebRequest.js +2 -2
- package/Xlsx.js +85 -0
- package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +7 -7
- package/fable_modules/Fable.Promise.2.2.2/Promise.fs.js +3 -3
- package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +8 -8
- package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +2 -2
- package/fable_modules/FsSpreadsheet.5.1.3/Cells/FsCell.fs.js +14 -14
- package/fable_modules/FsSpreadsheet.5.1.3/Cells/FsCellsCollection.fs.js +6 -6
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/CellBuilder.fs.js +4 -4
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/ColumnBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/DSL.fs.js +2 -2
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/Expression.fs.js +1 -1
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/RowBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/SheetBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/TableBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/Transform.fs.js +6 -6
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/Types.fs.js +4 -4
- package/fable_modules/FsSpreadsheet.5.1.3/DSL/WorkbookBuilder.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/FsAddress.fs.js +8 -8
- package/fable_modules/FsSpreadsheet.5.1.3/FsColumn.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/FsRow.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/FsWorkbook.fs.js +6 -6
- package/fable_modules/FsSpreadsheet.5.1.3/FsWorksheet.fs.js +9 -9
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRange.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeAddress.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeBase.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeColumn.fs.js +3 -3
- package/fable_modules/FsSpreadsheet.5.1.3/Ranges/FsRangeRow.fs.js +1 -1
- package/fable_modules/FsSpreadsheet.5.1.3/SheetBuilder.fs.js +8 -8
- package/fable_modules/FsSpreadsheet.5.1.3/Tables/FsTable.fs.js +7 -7
- package/fable_modules/FsSpreadsheet.5.1.3/Tables/FsTableField.fs.js +4 -4
- package/fable_modules/FsSpreadsheet.5.1.3/Tables/FsTableRow.fs.js +1 -1
- package/fable_modules/Thoth.Json.Core.0.2.1/Decode.fs.js +19 -19
- package/fable_modules/Thoth.Json.Core.0.2.1/Encode.fs.js +5 -5
- package/fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js +2 -2
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Decode.fs.js +1 -1
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Encode.fs.js +2 -2
- package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Boolean.js +2 -2
- package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/CHANGELOG.md +18 -0
- package/fable_modules/fable-library-js.4.16.0/ConditionalWeakTable.d.ts +9 -0
- package/fable_modules/fable-library-js.4.16.0/ConditionalWeakTable.js +21 -0
- package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Date.js +337 -40
- package/fable_modules/fable-library-js.4.16.0/MapUtil.d.ts +12 -0
- package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/MapUtil.js +15 -0
- package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Util.d.ts +6 -3
- package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Util.js +2 -13
- package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/package.json +1 -1
- package/fable_modules/project_cracked.json +1 -1
- package/index.js +14 -12
- package/package.json +1 -1
- package/Contracts/Contracts.ArcTypes.js +0 -268
- package/FileSystemTree.js +0 -51
- package/ISA/ISA/ArcTypes/ArcTableAux.js +0 -1155
- package/ISA/ISA/ArcTypes/CompositeRow.js +0 -111
- package/ISA/ISA/Builder/Types.js +0 -243
- package/ISA/ISA/Fable.js +0 -123
- package/ISA/ISA/Helper.js +0 -505
- package/ISA/ISA/JsonTypes/Assay.js +0 -620
- package/ISA/ISA/JsonTypes/AssayMaterials.js +0 -39
- package/ISA/ISA/JsonTypes/ColumnIndex.js +0 -246
- package/ISA/ISA/JsonTypes/Comment.js +0 -58
- package/ISA/ISA/JsonTypes/Component.js +0 -165
- package/ISA/ISA/JsonTypes/Factor.js +0 -128
- package/ISA/ISA/JsonTypes/Investigation.js +0 -204
- package/ISA/ISA/JsonTypes/OntologyAnnotation.js +0 -196
- package/ISA/ISA/JsonTypes/OntologySourceReference.js +0 -85
- package/ISA/ISA/JsonTypes/Person.js +0 -152
- package/ISA/ISA/JsonTypes/Publication.js +0 -105
- package/ISA/ISA/JsonTypes/Study.js +0 -942
- package/ISA/ISA/JsonTypes/StudyMaterials.js +0 -45
- package/ISA/ISA/UIHelper.js +0 -19
- package/ISA/ISA.Json/ArcTypes/ArcAssay.js +0 -303
- package/ISA/ISA.Json/ArcTypes/ArcInvestigation.js +0 -122
- package/ISA/ISA.Json/ArcTypes/ArcStudy.js +0 -203
- package/ISA/ISA.Json/ArcTypes/CellTable.js +0 -40
- package/ISA/ISA.Json/ArcTypes/CompositeCell.js +0 -62
- package/ISA/ISA.Json/ArcTypes/IOType.js +0 -33
- package/ISA/ISA.Json/ArcTypes/OATable.js +0 -42
- package/ISA/ISA.Json/Assay.js +0 -129
- package/ISA/ISA.Json/Comment.js +0 -80
- package/ISA/ISA.Json/ConverterOptions.js +0 -51
- package/ISA/ISA.Json/Data.js +0 -253
- package/ISA/ISA.Json/Decode.js +0 -61
- package/ISA/ISA.Json/Factor.js +0 -194
- package/ISA/ISA.Json/GEncode.js +0 -40
- package/ISA/ISA.Json/Investigation.js +0 -89
- package/ISA/ISA.Json/Material.js +0 -232
- package/ISA/ISA.Json/Ontology.js +0 -200
- package/ISA/ISA.Json/Person.js +0 -186
- package/ISA/ISA.Json/Process.js +0 -305
- package/ISA/ISA.Json/Protocol.js +0 -281
- package/ISA/ISA.Json/Publication.js +0 -86
- package/ISA/ISA.Json/StringTable.js +0 -44
- package/ISA/ISA.Json/Study.js +0 -186
- package/ISA/ISA.Json/context/rocrate/isa_assay_context.js +0 -34
- package/ISA/ISA.Json/context/rocrate/isa_comment_context.js +0 -23
- package/ISA/ISA.Json/context/rocrate/isa_component_context.js +0 -24
- package/ISA/ISA.Json/context/rocrate/isa_data_context.js +0 -25
- package/ISA/ISA.Json/context/rocrate/isa_factor_context.js +0 -25
- package/ISA/ISA.Json/context/rocrate/isa_factor_value_context.js +0 -25
- package/ISA/ISA.Json/context/rocrate/isa_material_attribute_value_context.js +0 -25
- package/ISA/ISA.Json/context/rocrate/isa_material_context.js +0 -26
- package/ISA/ISA.Json/context/rocrate/isa_ontology_annotation_context.js +0 -25
- package/ISA/ISA.Json/context/rocrate/isa_ontology_source_reference_context.js +0 -26
- package/ISA/ISA.Json/context/rocrate/isa_organization_context.js +0 -22
- package/ISA/ISA.Json/context/rocrate/isa_person_context.js +0 -31
- package/ISA/ISA.Json/context/rocrate/isa_process_context.js +0 -31
- package/ISA/ISA.Json/context/rocrate/isa_process_parameter_value_context.js +0 -25
- package/ISA/ISA.Json/context/rocrate/isa_protocol_context.js +0 -30
- package/ISA/ISA.Json/context/rocrate/isa_publication_context.js +0 -27
- package/ISA/ISA.Json/context/rocrate/isa_sample_context.js +0 -26
- package/ISA/ISA.Json/context/rocrate/isa_source_context.js +0 -25
- package/ISA/ISA.Json/context/rocrate/isa_study_context.js +0 -42
- package/ISA/ISA.Json/context/rocrate/rocrate_context.js +0 -25
- package/ISA/ISA.Spreadsheet/Metadata/OntologyAnnotation.js +0 -65
- package/Path.js +0 -10
- package/Templates/Template.Json.js +0 -90
- package/Templates/Template.Web.js +0 -27
- package/Templates/Templates.js +0 -82
- package/fable_modules/fable-library-js.4.13.0/MapUtil.d.ts +0 -10
- /package/{ISA/ISA/JsonTypes → Core}/URI.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Array.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Array.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Async.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Async.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/AsyncBuilder.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/AsyncBuilder.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/BigInt.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/BigInt.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/BitConverter.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/BitConverter.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Boolean.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Char.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Char.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Choice.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Choice.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Date.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/DateOffset.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/DateOffset.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/DateOnly.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/DateOnly.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Decimal.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Decimal.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Double.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Double.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Encoding.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Encoding.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Event.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Event.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/FSharp.Collections.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/FSharp.Collections.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/FSharp.Core.CompilerServices.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/FSharp.Core.CompilerServices.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/FSharp.Core.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/FSharp.Core.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Global.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Global.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Guid.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Guid.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Int32.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Int32.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/List.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/List.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Long.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Long.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/MailboxProcessor.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/MailboxProcessor.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Map.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Map.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/MutableMap.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/MutableMap.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/MutableSet.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/MutableSet.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Native.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Native.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Numeric.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Numeric.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Observable.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Observable.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Option.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Option.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/README.md +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Random.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Random.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Range.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Range.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Reflection.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Reflection.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/RegExp.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/RegExp.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Result.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Result.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Seq.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Seq.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Seq2.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Seq2.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Set.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Set.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/String.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/String.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/System.Collections.Generic.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/System.Collections.Generic.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/System.Text.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/System.Text.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/SystemException.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/SystemException.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/TimeOnly.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/TimeOnly.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/TimeSpan.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/TimeSpan.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Timer.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Timer.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Types.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Types.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Unicode.13.0.0.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Unicode.13.0.0.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Uri.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/Uri.js +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/big.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/lib/big.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.13.0 → fable-library-js.4.16.0}/lib/big.js +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { choose, transpose, map, iterateIndexed, iterate, ofArrayWithTail, empty, reverse, singleton, tail as tail_25, cons, head, isEmpty } from "../../fable-library-js.4.
|
|
1
|
+
import { choose, transpose, map, iterateIndexed, iterate, ofArrayWithTail, empty, reverse, singleton, tail as tail_25, cons, head, isEmpty } from "../../fable-library-js.4.16.0/List.js";
|
|
2
2
|
import { RowIndex__get_Index, ColumnIndex__get_Index, TableElement__get_IsColumn, SheetElement } from "./Types.fs.js";
|
|
3
|
-
import { toString } from "../../fable-library-js.4.
|
|
3
|
+
import { toString } from "../../fable-library-js.4.16.0/Types.js";
|
|
4
4
|
import { FsRangeColumn__Cell_Z4232C216 } from "../Ranges/FsRangeColumn.fs.js";
|
|
5
5
|
import { FsTableField__get_Column } from "../Tables/FsTableField.fs.js";
|
|
6
|
-
import { add, FSharpSet__Contains, ofSeq } from "../../fable-library-js.4.
|
|
7
|
-
import { comparePrimitives } from "../../fable-library-js.4.
|
|
8
|
-
import { max } from "../../fable-library-js.4.
|
|
6
|
+
import { add, FSharpSet__Contains, ofSeq } from "../../fable-library-js.4.16.0/Set.js";
|
|
7
|
+
import { comparePrimitives } from "../../fable-library-js.4.16.0/Util.js";
|
|
8
|
+
import { max } from "../../fable-library-js.4.16.0/Seq.js";
|
|
9
9
|
import { FsCellsCollection__get_MaxRowNumber } from "../Cells/FsCellsCollection.fs.js";
|
|
10
10
|
import { FsRangeAddress_$ctor_7E77A4A0 } from "../Ranges/FsRangeAddress.fs.js";
|
|
11
11
|
import { FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
12
|
-
import { toText, printf, toFail } from "../../fable-library-js.4.
|
|
12
|
+
import { toText, printf, toFail } from "../../fable-library-js.4.16.0/String.js";
|
|
13
13
|
import { FsWorkbook } from "../FsWorkbook.fs.js";
|
|
14
14
|
import { FsWorksheet } from "../FsWorksheet.fs.js";
|
|
15
15
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Union } from "../../fable-library-js.4.
|
|
2
|
-
import { tuple_type, obj_type, int32_type, list_type, union_type, class_type, string_type } from "../../fable-library-js.4.
|
|
3
|
-
import { empty, pick, exists, map, reduce } from "../../fable-library-js.4.
|
|
4
|
-
import { printf, toConsole } from "../../fable-library-js.4.
|
|
1
|
+
import { Union } from "../../fable-library-js.4.16.0/Types.js";
|
|
2
|
+
import { tuple_type, obj_type, int32_type, list_type, union_type, class_type, string_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
3
|
+
import { empty, pick, exists, map, reduce } from "../../fable-library-js.4.16.0/List.js";
|
|
4
|
+
import { printf, toConsole } from "../../fable-library-js.4.16.0/String.js";
|
|
5
5
|
import { DataType_$reflection } from "../Cells/FsCell.fs.js";
|
|
6
6
|
|
|
7
7
|
export class Message extends Union {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library-js.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
2
2
|
import { SheetEntity$1__get_Messages, SheetEntity$1, Message__MapText_11D407F6, SheetEntity$1_some_2B595 } from "./Types.fs.js";
|
|
3
|
-
import { append, map, empty } from "../../fable-library-js.4.
|
|
4
|
-
import { printf, toText } from "../../fable-library-js.4.
|
|
3
|
+
import { append, map, empty } from "../../fable-library-js.4.16.0/List.js";
|
|
4
|
+
import { printf, toText } from "../../fable-library-js.4.16.0/String.js";
|
|
5
5
|
|
|
6
6
|
export class WorkbookBuilder {
|
|
7
7
|
constructor() {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { toFail, printf, toText } from "../fable-library-js.4.
|
|
2
|
-
import { StringBuilder__Append_244C7CD6, StringBuilder_$ctor } from "../fable-library-js.4.
|
|
3
|
-
import { iterate } from "../fable-library-js.4.
|
|
4
|
-
import { isDigit, isLetter } from "../fable-library-js.4.
|
|
5
|
-
import { toString } from "../fable-library-js.4.
|
|
6
|
-
import { parse } from "../fable-library-js.4.
|
|
7
|
-
import { toUInt32, fromInt32, fromUInt32, op_Addition, toInt64 } from "../fable-library-js.4.
|
|
8
|
-
import { class_type } from "../fable-library-js.4.
|
|
1
|
+
import { toFail, printf, toText } from "../fable-library-js.4.16.0/String.js";
|
|
2
|
+
import { StringBuilder__Append_244C7CD6, StringBuilder_$ctor } from "../fable-library-js.4.16.0/System.Text.js";
|
|
3
|
+
import { iterate } from "../fable-library-js.4.16.0/Seq.js";
|
|
4
|
+
import { isDigit, isLetter } from "../fable-library-js.4.16.0/Char.js";
|
|
5
|
+
import { toString } from "../fable-library-js.4.16.0/Types.js";
|
|
6
|
+
import { parse } from "../fable-library-js.4.16.0/Int32.js";
|
|
7
|
+
import { toUInt32, fromInt32, fromUInt32, op_Addition, toInt64 } from "../fable-library-js.4.16.0/BigInt.js";
|
|
8
|
+
import { class_type } from "../fable-library-js.4.16.0/Reflection.js";
|
|
9
9
|
|
|
10
10
|
export const CellReference_indexRegex = /([A-Z]*)(\d*)/gu;
|
|
11
11
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
|
|
2
2
|
import { FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
|
|
3
3
|
import { FsCellsCollection__Add_Z21F271A4, FsCellsCollection__GetCellsInColumn_Z524259A4, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
|
|
4
|
-
import { exists, map, maxBy, minBy, length } from "../fable-library-js.4.
|
|
5
|
-
import { toIterator, getEnumerator, comparePrimitives } from "../fable-library-js.4.
|
|
4
|
+
import { exists, map, maxBy, minBy, length } from "../fable-library-js.4.16.0/Seq.js";
|
|
5
|
+
import { toIterator, getEnumerator, comparePrimitives } from "../fable-library-js.4.16.0/Util.js";
|
|
6
6
|
import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase__Cells_Z2740B3CA } from "./Ranges/FsRangeBase.fs.js";
|
|
7
|
-
import { class_type } from "../fable-library-js.4.
|
|
7
|
+
import { class_type } from "../fable-library-js.4.16.0/Reflection.js";
|
|
8
8
|
|
|
9
9
|
export class FsColumn extends FsRangeBase {
|
|
10
10
|
constructor(rangeAddress, cells) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
|
|
2
2
|
import { FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
|
|
3
3
|
import { FsCellsCollection__Add_2E78CE33, FsCellsCollection__Add_Z21F271A4, FsCellsCollection__GetCellsInRow_Z524259A4, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
|
|
4
|
-
import { exists, map, maxBy, minBy, length } from "../fable-library-js.4.
|
|
5
|
-
import { toIterator, getEnumerator, comparePrimitives } from "../fable-library-js.4.
|
|
4
|
+
import { exists, map, maxBy, minBy, length } from "../fable-library-js.4.16.0/Seq.js";
|
|
5
|
+
import { toIterator, getEnumerator, comparePrimitives } from "../fable-library-js.4.16.0/Util.js";
|
|
6
6
|
import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase__Cells_Z2740B3CA } from "./Ranges/FsRangeBase.fs.js";
|
|
7
7
|
import { FsCell } from "./Cells/FsCell.fs.js";
|
|
8
|
-
import { class_type } from "../fable-library-js.4.
|
|
8
|
+
import { class_type } from "../fable-library-js.4.16.0/Reflection.js";
|
|
9
9
|
|
|
10
10
|
export class FsRow extends FsRangeBase {
|
|
11
11
|
constructor(rangeAddress, cells) {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { collect, tryFind as tryFind_1, removeInPlace, map } from "../fable-library-js.4.
|
|
1
|
+
import { collect, tryFind as tryFind_1, removeInPlace, map } from "../fable-library-js.4.16.0/Array.js";
|
|
2
2
|
import { FsWorksheet } from "./FsWorksheet.fs.js";
|
|
3
|
-
import { tryFind, tryItem, iterate, exists } from "../fable-library-js.4.
|
|
4
|
-
import { printf, toFail } from "../fable-library-js.4.
|
|
5
|
-
import { defaultArg, value as value_1 } from "../fable-library-js.4.
|
|
6
|
-
import { safeHash, equals, defaultOf } from "../fable-library-js.4.
|
|
7
|
-
import { class_type } from "../fable-library-js.4.
|
|
3
|
+
import { tryFind, tryItem, iterate, exists } from "../fable-library-js.4.16.0/Seq.js";
|
|
4
|
+
import { printf, toFail } from "../fable-library-js.4.16.0/String.js";
|
|
5
|
+
import { defaultArg, value as value_1 } from "../fable-library-js.4.16.0/Option.js";
|
|
6
|
+
import { safeHash, equals, defaultOf } from "../fable-library-js.4.16.0/Util.js";
|
|
7
|
+
import { class_type } from "../fable-library-js.4.16.0/Reflection.js";
|
|
8
8
|
|
|
9
9
|
export class FsWorkbook {
|
|
10
10
|
constructor() {
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import { FsCellsCollection__RemoveValueAt_Z37302880, FsCellsCollection__TryRemoveValueAt_Z37302880, FsCellsCollection__RemoveCellAt_Z37302880, FsCellsCollection__Add_2E78CE33, FsCellsCollection__Add_Z21F271A4, FsCellsCollection__Add_Z334DF64D, FsCellsCollection__TryGetCell_Z37302880, FsCellsCollection__Copy, FsCellsCollection__GetCells, FsCellsCollection_$ctor } from "./Cells/FsCellsCollection.fs.js";
|
|
2
|
-
import { empty, maxBy, filter, exists, find, tryFind, iterate, last, head, sortBy, map } from "../fable-library-js.4.
|
|
2
|
+
import { empty, maxBy, filter, exists, find, tryFind, iterate, last, head, sortBy, map } from "../fable-library-js.4.16.0/Seq.js";
|
|
3
3
|
import { FsColumn } from "./FsColumn.fs.js";
|
|
4
|
-
import { clear, safeHash, equals, disposeSafe, getEnumerator, numberHash, comparePrimitives } from "../fable-library-js.4.
|
|
4
|
+
import { clear, safeHash, equals, disposeSafe, getEnumerator, numberHash, comparePrimitives } from "../fable-library-js.4.16.0/Util.js";
|
|
5
5
|
import { FsAddress__get_ColumnNumber, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "./FsAddress.fs.js";
|
|
6
6
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./Ranges/FsRangeAddress.fs.js";
|
|
7
|
-
import { groupBy } from "../fable-library-js.4.
|
|
8
|
-
import { value as value_3, defaultArg } from "../fable-library-js.4.
|
|
7
|
+
import { groupBy } from "../fable-library-js.4.16.0/Seq2.js";
|
|
8
|
+
import { value as value_3, defaultArg } from "../fable-library-js.4.16.0/Option.js";
|
|
9
9
|
import { FsRow } from "./FsRow.fs.js";
|
|
10
|
-
import { toConsole, printf, toFail } from "../fable-library-js.4.
|
|
10
|
+
import { toConsole, printf, toFail } from "../fable-library-js.4.16.0/String.js";
|
|
11
11
|
import { FsRangeBase__set_RangeAddress_6A2513BC } from "./Ranges/FsRangeBase.fs.js";
|
|
12
|
-
import { addRangeInPlace, removeInPlace } from "../fable-library-js.4.
|
|
13
|
-
import { tryFind as tryFind_1, ofSeq } from "../fable-library-js.4.
|
|
12
|
+
import { addRangeInPlace, removeInPlace } from "../fable-library-js.4.16.0/Array.js";
|
|
13
|
+
import { tryFind as tryFind_1, ofSeq } from "../fable-library-js.4.16.0/Map.js";
|
|
14
14
|
import { FsTable } from "./Tables/FsTable.fs.js";
|
|
15
|
-
import { iterate as iterate_1 } from "../fable-library-js.4.
|
|
15
|
+
import { iterate as iterate_1 } from "../fable-library-js.4.16.0/List.js";
|
|
16
16
|
import { FsCell } from "./Cells/FsCell.fs.js";
|
|
17
|
-
import { class_type } from "../fable-library-js.4.
|
|
17
|
+
import { class_type } from "../fable-library-js.4.16.0/Reflection.js";
|
|
18
18
|
|
|
19
19
|
export class FsWorksheet {
|
|
20
20
|
constructor(name, fsRows, fsTables, fsCellsCollection) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
|
|
2
|
-
import { class_type } from "../../fable-library-js.4.
|
|
3
|
-
import { int32ToString, defaultOf } from "../../fable-library-js.4.
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
3
|
+
import { int32ToString, defaultOf } from "../../fable-library-js.4.16.0/Util.js";
|
|
4
4
|
import { FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
|
|
5
5
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress_$ctor_7E77A4A0, FsRangeAddress__get_FirstAddress } from "./FsRangeAddress.fs.js";
|
|
6
|
-
import { printf, toText } from "../../fable-library-js.4.
|
|
6
|
+
import { printf, toText } from "../../fable-library-js.4.16.0/String.js";
|
|
7
7
|
import { FsRangeRow_$ctor_6A2513BC } from "./FsRangeRow.fs.js";
|
|
8
8
|
|
|
9
9
|
export class FsRange extends FsRangeBase {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library-js.4.
|
|
2
|
-
import { toConsole, printf, toText } from "../../fable-library-js.4.
|
|
3
|
-
import { item } from "../../fable-library-js.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
2
|
+
import { toConsole, printf, toText } from "../../fable-library-js.4.16.0/String.js";
|
|
3
|
+
import { item } from "../../fable-library-js.4.16.0/Array.js";
|
|
4
4
|
import { FsAddress__get_Address, FsAddress_$ctor_Z37302880, FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress_$ctor_Z721C83C5, CellReference_moveHorizontal, CellReference_toIndices } from "../FsAddress.fs.js";
|
|
5
5
|
|
|
6
6
|
export class FsRangeAddress {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { equals, defaultOf } from "../../fable-library-js.4.
|
|
2
|
-
import { class_type } from "../../fable-library-js.4.
|
|
1
|
+
import { equals, defaultOf } from "../../fable-library-js.4.16.0/Util.js";
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
3
3
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress__Extend_6D30B323 } from "./FsRangeAddress.fs.js";
|
|
4
4
|
import { FsAddress__get_FixedColumn, FsAddress__get_FixedRow, FsAddress_$ctor_Z4C746FC0, FsAddress__get_ColumnNumber, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
|
|
5
5
|
import { FsCellsCollection__GetCells_7E77A4A0, FsCellsCollection__Add_2E78CE33, FsCellsCollection__TryGetCell_Z37302880, FsCellsCollection__get_MaxColumnNumber, FsCellsCollection__get_MaxRowNumber } from "../Cells/FsCellsCollection.fs.js";
|
|
6
|
-
import { printf, toFail } from "../../fable-library-js.4.
|
|
6
|
+
import { printf, toFail } from "../../fable-library-js.4.16.0/String.js";
|
|
7
7
|
import { FsCell } from "../Cells/FsCell.fs.js";
|
|
8
8
|
|
|
9
9
|
export class FsRangeBase {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { FsRangeBase__Cells_Z2740B3CA, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
|
|
2
|
-
import { class_type } from "../../fable-library-js.4.
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
3
3
|
import { FsRangeAddress__Copy, FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./FsRangeAddress.fs.js";
|
|
4
4
|
import { FsAddress__get_RowNumber, FsAddress__set_ColumnNumber_Z524259A4, FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
5
|
-
import { map, toList } from "../../fable-library-js.4.
|
|
6
|
-
import { rangeDouble } from "../../fable-library-js.4.
|
|
5
|
+
import { map, toList } from "../../fable-library-js.4.16.0/Seq.js";
|
|
6
|
+
import { rangeDouble } from "../../fable-library-js.4.16.0/Range.js";
|
|
7
7
|
|
|
8
8
|
export class FsRangeColumn extends FsRangeBase {
|
|
9
9
|
constructor(rangeAddress) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FsRangeBase__Cells_Z2740B3CA, FsRangeBase__Cell_Z3407A44B, FsRangeBase__get_RangeAddress, FsRangeBase_$reflection, FsRangeBase } from "./FsRangeBase.fs.js";
|
|
2
|
-
import { class_type } from "../../fable-library-js.4.
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
3
3
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "./FsRangeAddress.fs.js";
|
|
4
4
|
import { FsAddress__get_ColumnNumber, FsAddress__set_RowNumber_Z524259A4, FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
5
5
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { equals, disposeSafe, getEnumerator, curry2, defaultOf } from "../fable-library-js.4.
|
|
2
|
-
import { addToDict, tryGetValue } from "../fable-library-js.4.
|
|
3
|
-
import { Record, FSharpRef } from "../fable-library-js.4.
|
|
4
|
-
import { toNullable, some } from "../fable-library-js.4.
|
|
1
|
+
import { equals, disposeSafe, getEnumerator, curry2, defaultOf } from "../fable-library-js.4.16.0/Util.js";
|
|
2
|
+
import { addToDict, tryGetValue } from "../fable-library-js.4.16.0/MapUtil.js";
|
|
3
|
+
import { Record, FSharpRef } from "../fable-library-js.4.16.0/Types.js";
|
|
4
|
+
import { toNullable, some } from "../fable-library-js.4.16.0/Option.js";
|
|
5
5
|
import { FsCell, FsCell_$reflection } from "./Cells/FsCell.fs.js";
|
|
6
|
-
import { record_type, string_type, bool_type, option_type, float64_type, list_type, lambda_type } from "../fable-library-js.4.
|
|
7
|
-
import { iterate, isEmpty, map as map_1, concat, singleton, append, empty as empty_1 } from "../fable-library-js.4.
|
|
8
|
-
import { newGuid } from "../fable-library-js.4.
|
|
6
|
+
import { record_type, string_type, bool_type, option_type, float64_type, list_type, lambda_type } from "../fable-library-js.4.16.0/Reflection.js";
|
|
7
|
+
import { iterate, isEmpty, map as map_1, concat, singleton, append, empty as empty_1 } from "../fable-library-js.4.16.0/List.js";
|
|
8
|
+
import { newGuid } from "../fable-library-js.4.16.0/Guid.js";
|
|
9
9
|
import { FsRangeAddress_$ctor_7E77A4A0, FsRangeAddress__get_FirstAddress } from "./Ranges/FsRangeAddress.fs.js";
|
|
10
10
|
import { FsRangeBase__get_RangeAddress } from "./Ranges/FsRangeBase.fs.js";
|
|
11
11
|
import { FsAddress_$ctor_Z37302880, FsAddress__get_RowNumber } from "./FsAddress.fs.js";
|
|
12
|
-
import { find, indexed } from "../fable-library-js.4.
|
|
12
|
+
import { find, indexed } from "../fable-library-js.4.16.0/Seq.js";
|
|
13
13
|
import { FsRangeColumn__Cell_Z4232C216 } from "./Ranges/FsRangeColumn.fs.js";
|
|
14
14
|
import { FsTableField__get_Column } from "./Tables/FsTableField.fs.js";
|
|
15
15
|
import { FsWorksheet } from "./FsWorksheet.fs.js";
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { disposeSafe, getEnumerator, comparePrimitives, int32ToString, defaultOf, equals } from "../../fable-library-js.4.
|
|
1
|
+
import { disposeSafe, getEnumerator, comparePrimitives, int32ToString, defaultOf, equals } from "../../fable-library-js.4.16.0/Util.js";
|
|
2
2
|
import { FsRangeBase_$reflection, FsRangeBase, FsRangeBase__set_RangeAddress_6A2513BC, FsRangeBase__ColumnCount, FsRangeBase__get_RangeAddress } from "../Ranges/FsRangeBase.fs.js";
|
|
3
|
-
import { exists, toList, choose, tryPick, tryFind, find, max, length, iterate, iterateIndexed, map, reduce, singleton, collect, delay, initialize } from "../../fable-library-js.4.
|
|
3
|
+
import { exists, toList, choose, tryPick, tryFind, find, max, length, iterate, iterateIndexed, map, reduce, singleton, collect, delay, initialize } from "../../fable-library-js.4.16.0/Seq.js";
|
|
4
4
|
import { FsRange_$ctor_6A2513BC, FsRange__FirstRow } from "../Ranges/FsRange.fs.js";
|
|
5
5
|
import { FsAddress__get_ColumnNumber, FsAddress_$ctor_Z37302880, FsAddress__get_RowNumber } from "../FsAddress.fs.js";
|
|
6
6
|
import { FsRangeAddress__Copy, FsRangeAddress__Union_6A2513BC, FsRangeAddress__get_LastAddress, FsRangeAddress_$ctor_7E77A4A0, FsRangeAddress__get_FirstAddress } from "../Ranges/FsRangeAddress.fs.js";
|
|
7
7
|
import { FsRow } from "../FsRow.fs.js";
|
|
8
8
|
import { FsColumn } from "../FsColumn.fs.js";
|
|
9
|
-
import { rangeDouble } from "../../fable-library-js.4.
|
|
9
|
+
import { rangeDouble } from "../../fable-library-js.4.16.0/Range.js";
|
|
10
10
|
import { FsTableField__set_Index_Z524259A4, FsTableField_$ctor_Z18115A39, FsTableField__HeaderCell_10EBE01C, FsTableField__get_Index, FsTableField_$ctor_726EFFB, FsTableField__get_Name, FsTableField_$ctor_6547009B, FsTableField__get_Column } from "./FsTableField.fs.js";
|
|
11
|
-
import { getItemFromDict, addToDict, addToSet } from "../../fable-library-js.4.
|
|
11
|
+
import { getItemFromDict, addToDict, addToSet } from "../../fable-library-js.4.16.0/MapUtil.js";
|
|
12
12
|
import { FsRangeColumn__get_Index, FsRangeColumn_$ctor_6A2513BC, FsRangeColumn_$ctor_Z524259A4 } from "../Ranges/FsRangeColumn.fs.js";
|
|
13
13
|
import { FsCellsCollection__TryGetCell_Z37302880, FsCellsCollection__GetCellsInColumn_Z524259A4, Dictionary_tryGet } from "../Cells/FsCellsCollection.fs.js";
|
|
14
|
-
import { replace } from "../../fable-library-js.4.
|
|
15
|
-
import { defaultArg, value as value_2 } from "../../fable-library-js.4.
|
|
14
|
+
import { replace } from "../../fable-library-js.4.16.0/String.js";
|
|
15
|
+
import { defaultArg, value as value_2 } from "../../fable-library-js.4.16.0/Option.js";
|
|
16
16
|
import { DataType } from "../Cells/FsCell.fs.js";
|
|
17
|
-
import { class_type } from "../../fable-library-js.4.
|
|
17
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
18
18
|
|
|
19
19
|
export class FsTable extends FsRangeBase {
|
|
20
20
|
constructor(name, rangeAddress, showTotalsRow, showHeaderRow) {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { class_type } from "../../fable-library-js.4.
|
|
2
|
-
import { equals, defaultOf } from "../../fable-library-js.4.
|
|
1
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
2
|
+
import { equals, defaultOf } from "../../fable-library-js.4.16.0/Util.js";
|
|
3
3
|
import { FsRangeColumn__Cells_Z2740B3CA, FsRangeColumn__Copy, FsRangeColumn__FirstCell_Z2740B3CA, FsRangeColumn_$ctor_6A2513BC } from "../Ranges/FsRangeColumn.fs.js";
|
|
4
4
|
import { FsRangeAddress__get_LastAddress, FsRangeAddress__get_FirstAddress, FsRangeAddress_$ctor_7E77A4A0 } from "../Ranges/FsRangeAddress.fs.js";
|
|
5
5
|
import { FsAddress__get_RowNumber, FsAddress_$ctor_Z37302880 } from "../FsAddress.fs.js";
|
|
6
6
|
import { FsRangeBase__get_RangeAddress } from "../Ranges/FsRangeBase.fs.js";
|
|
7
|
-
import { printf, toFail } from "../../fable-library-js.4.
|
|
8
|
-
import { skip } from "../../fable-library-js.4.
|
|
7
|
+
import { printf, toFail } from "../../fable-library-js.4.16.0/String.js";
|
|
8
|
+
import { skip } from "../../fable-library-js.4.16.0/Seq.js";
|
|
9
9
|
|
|
10
10
|
export class FsTableField {
|
|
11
11
|
constructor(name, index, column, totalsRowLabel, totalsRowFunction) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FsRangeRow_$reflection, FsRangeRow } from "../Ranges/FsRangeRow.fs.js";
|
|
2
|
-
import { class_type } from "../../fable-library-js.4.
|
|
2
|
+
import { class_type } from "../../fable-library-js.4.16.0/Reflection.js";
|
|
3
3
|
|
|
4
4
|
export class FsTableRow extends FsRangeRow {
|
|
5
5
|
constructor(rangeAddress) {
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { join } from "../fable-library-js.4.
|
|
2
|
-
import { length, tail as tail_1, head as head_1, isEmpty, cons, reverse as reverse_1, ofSeq, singleton, append, empty, fold, tryLast, map as map_1 } from "../fable-library-js.4.
|
|
3
|
-
import { Result_Map, Result_MapError, FSharpResult$2 } from "../fable-library-js.4.
|
|
1
|
+
import { join } from "../fable-library-js.4.16.0/String.js";
|
|
2
|
+
import { length, tail as tail_1, head as head_1, isEmpty, cons, reverse as reverse_1, ofSeq, singleton, append, empty, fold, tryLast, map as map_1 } from "../fable-library-js.4.16.0/List.js";
|
|
3
|
+
import { Result_Map, Result_MapError, FSharpResult$2 } from "../fable-library-js.4.16.0/Result.js";
|
|
4
4
|
import { ErrorReason$1 } from "./Types.fs.js";
|
|
5
|
-
import { tryParse as tryParse_1 } from "../fable-library-js.4.
|
|
6
|
-
import { FSharpRef } from "../fable-library-js.4.
|
|
7
|
-
import { tryParse as tryParse_2 } from "../fable-library-js.4.
|
|
8
|
-
import { tryParse as tryParse_4, fromInt32, toUInt64, fromFloat64, toInt64, toFloat64 } from "../fable-library-js.4.
|
|
9
|
-
import { tryParse as tryParse_3 } from "../fable-library-js.4.
|
|
10
|
-
import { tryParse as tryParse_5 } from "../fable-library-js.4.
|
|
11
|
-
import Decimal from "../fable-library-js.4.
|
|
12
|
-
import { toUniversalTime, tryParse as tryParse_6, minValue } from "../fable-library-js.4.
|
|
13
|
-
import { tryParse as tryParse_7, minValue as minValue_1 } from "../fable-library-js.4.
|
|
14
|
-
import { tryParse as tryParse_8 } from "../fable-library-js.4.
|
|
15
|
-
import { value as value_7, defaultArg, some } from "../fable-library-js.4.
|
|
16
|
-
import { compare, comparePrimitives, defaultOf, int32ToString } from "../fable-library-js.4.
|
|
17
|
-
import { fill, setItem, fold as fold_1, item } from "../fable-library-js.4.
|
|
18
|
-
import { toList, append as append_1, reverse } from "../fable-library-js.4.
|
|
19
|
-
import { class_type } from "../fable-library-js.4.
|
|
20
|
-
import { ofSeq as ofSeq_1, ofList } from "../fable-library-js.4.
|
|
5
|
+
import { tryParse as tryParse_1 } from "../fable-library-js.4.16.0/Guid.js";
|
|
6
|
+
import { FSharpRef } from "../fable-library-js.4.16.0/Types.js";
|
|
7
|
+
import { tryParse as tryParse_2 } from "../fable-library-js.4.16.0/Int32.js";
|
|
8
|
+
import { tryParse as tryParse_4, fromInt32, toUInt64, fromFloat64, toInt64, toFloat64 } from "../fable-library-js.4.16.0/BigInt.js";
|
|
9
|
+
import { tryParse as tryParse_3 } from "../fable-library-js.4.16.0/Long.js";
|
|
10
|
+
import { tryParse as tryParse_5 } from "../fable-library-js.4.16.0/Decimal.js";
|
|
11
|
+
import Decimal from "../fable-library-js.4.16.0/Decimal.js";
|
|
12
|
+
import { toUniversalTime, tryParse as tryParse_6, minValue } from "../fable-library-js.4.16.0/Date.js";
|
|
13
|
+
import { tryParse as tryParse_7, minValue as minValue_1 } from "../fable-library-js.4.16.0/DateOffset.js";
|
|
14
|
+
import { tryParse as tryParse_8 } from "../fable-library-js.4.16.0/TimeSpan.js";
|
|
15
|
+
import { value as value_7, defaultArg, some } from "../fable-library-js.4.16.0/Option.js";
|
|
16
|
+
import { compare, comparePrimitives, defaultOf, int32ToString } from "../fable-library-js.4.16.0/Util.js";
|
|
17
|
+
import { fill, setItem, fold as fold_1, item } from "../fable-library-js.4.16.0/Array.js";
|
|
18
|
+
import { toList, append as append_1, reverse } from "../fable-library-js.4.16.0/Seq.js";
|
|
19
|
+
import { class_type } from "../fable-library-js.4.16.0/Reflection.js";
|
|
20
|
+
import { ofSeq as ofSeq_1, ofList } from "../fable-library-js.4.16.0/Map.js";
|
|
21
21
|
|
|
22
22
|
export function Helpers_prependPath(path, err_, err__1) {
|
|
23
23
|
const err = [err_, err__1];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Json } from "./Types.fs.js";
|
|
2
|
-
import { map as map_1, toArray } from "../fable-library-js.4.
|
|
3
|
-
import { iterate, toArray as toArray_1 } from "../fable-library-js.4.
|
|
4
|
-
import { toList } from "../fable-library-js.4.
|
|
5
|
-
import { map as map_2, defaultArgWith } from "../fable-library-js.4.
|
|
6
|
-
import { map as map_3 } from "../fable-library-js.4.
|
|
2
|
+
import { map as map_1, toArray } from "../fable-library-js.4.16.0/List.js";
|
|
3
|
+
import { iterate, toArray as toArray_1 } from "../fable-library-js.4.16.0/Seq.js";
|
|
4
|
+
import { toList } from "../fable-library-js.4.16.0/Map.js";
|
|
5
|
+
import { map as map_2, defaultArgWith } from "../fable-library-js.4.16.0/Option.js";
|
|
6
|
+
import { map as map_3 } from "../fable-library-js.4.16.0/Array.js";
|
|
7
7
|
|
|
8
8
|
export function float32(value) {
|
|
9
9
|
return new Json(2, [value]);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Union } from "../fable-library-js.4.
|
|
2
|
-
import { uint32_type, array_type, class_type, bool_type, float64_type, char_type, union_type, list_type, tuple_type, string_type } from "../fable-library-js.4.
|
|
1
|
+
import { Union } from "../fable-library-js.4.16.0/Types.js";
|
|
2
|
+
import { uint32_type, array_type, class_type, bool_type, float64_type, char_type, union_type, list_type, tuple_type, string_type } from "../fable-library-js.4.16.0/Reflection.js";
|
|
3
3
|
|
|
4
4
|
export class ErrorReason$1 extends Union {
|
|
5
5
|
constructor(tag, fields) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defaultOf } from "../fable-library-js.4.
|
|
1
|
+
import { defaultOf } from "../fable-library-js.4.16.0/Util.js";
|
|
2
2
|
import { toJsonValue } from "../Thoth.Json.Core.0.2.1/Encode.fs.js";
|
|
3
|
-
import { some } from "../fable-library-js.4.
|
|
3
|
+
import { some } from "../fable-library-js.4.16.0/Option.js";
|
|
4
4
|
|
|
5
5
|
export const helpers = {
|
|
6
6
|
encodeString(value) {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { FSharpRef } from "./Types.js";
|
|
2
2
|
export function tryParse(str, defValue) {
|
|
3
|
-
if (str.match(/^\s*true\s*$/i)) {
|
|
3
|
+
if (str != null && str.match(/^\s*true\s*$/i)) {
|
|
4
4
|
defValue.contents = true;
|
|
5
5
|
return true;
|
|
6
6
|
}
|
|
7
|
-
else if (str.match(/^\s*false\s*$/i)) {
|
|
7
|
+
else if (str != null && str.match(/^\s*false\s*$/i)) {
|
|
8
8
|
defValue.contents = false;
|
|
9
9
|
return true;
|
|
10
10
|
}
|
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## Unreleased
|
|
9
9
|
|
|
10
|
+
## 1.4.0 - 2024-03-18
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
* [JS/TS] Add `ConditionalWeakTable` (by @chkn)
|
|
15
|
+
|
|
16
|
+
## 1.3.0 - 2024-03-18
|
|
17
|
+
|
|
18
|
+
* [JS/TS] `Boolean.tryParse` should not crash on `null` string (@goswinr)
|
|
19
|
+
|
|
20
|
+
## 1.2.0 - 2024-03-01
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
* [GH-3772](https://github.com/fable-compiler/Fable/pull/3772) [JS/TS] Re-implement `DateTime.ToString` custom format handling (by @MangelMaxime)
|
|
25
|
+
|
|
26
|
+
It now supports all custom format specifiers, and behave as if `CultureInfo.InvariantCulture` was used (Fable does not support Globalization).
|
|
27
|
+
|
|
10
28
|
## 1.1.0 - 2024-02-20
|
|
11
29
|
|
|
12
30
|
### Added
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare class ConditionalWeakTable<TKey extends object, TValue> {
|
|
2
|
+
private weakMap;
|
|
3
|
+
delete(key: TKey): boolean;
|
|
4
|
+
get(key: TKey): TValue | undefined;
|
|
5
|
+
has(key: TKey): boolean;
|
|
6
|
+
set(key: TKey, value: TValue): WeakMap<TKey, TValue>;
|
|
7
|
+
clear(): void;
|
|
8
|
+
}
|
|
9
|
+
export default ConditionalWeakTable;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export class ConditionalWeakTable {
|
|
2
|
+
constructor() {
|
|
3
|
+
this.weakMap = new WeakMap();
|
|
4
|
+
}
|
|
5
|
+
delete(key) {
|
|
6
|
+
return this.weakMap.delete(key);
|
|
7
|
+
}
|
|
8
|
+
get(key) {
|
|
9
|
+
return this.weakMap.get(key);
|
|
10
|
+
}
|
|
11
|
+
has(key) {
|
|
12
|
+
return this.weakMap.has(key);
|
|
13
|
+
}
|
|
14
|
+
set(key, value) {
|
|
15
|
+
return this.weakMap.set(key, value);
|
|
16
|
+
}
|
|
17
|
+
clear() {
|
|
18
|
+
this.weakMap = new WeakMap();
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
export default ConditionalWeakTable;
|