@microsoft/terraform-cdk-constructs 0.0.3-pre.10
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/.devcontainer/devcontainer.json +62 -0
- package/.jsii +18296 -0
- package/API.md +19698 -0
- package/CODE_OF_CONDUCT.md +9 -0
- package/CONTRIBUTING.md +85 -0
- package/LICENSE +19 -0
- package/README.md +152 -0
- package/SECURITY.md +41 -0
- package/SUPPORT.md +25 -0
- package/cdktf.json +11 -0
- package/cdktf.out/manifest.json +13 -0
- package/cdktf.out/stacks/testAzureActionGroup/cdk.tf.json +111 -0
- package/cdktf.out/stacks/testAzureApplicationGateway/cdk.tf.json +588 -0
- package/cdktf.out/stacks/testAzureApplicationInsights/cdk.tf.json +245 -0
- package/cdktf.out/stacks/testAzureContainerRegistry/cdk.tf.json +179 -0
- package/cdktf.out/stacks/testAzureEventhub/cdk.tf.json +236 -0
- package/cdktf.out/stacks/testAzureKeyVault/cdk.tf.json +436 -0
- package/cdktf.out/stacks/testAzureKubernetesCluster/cdk.tf.json +152 -0
- package/cdktf.out/stacks/testAzureKusto/cdk.tf.json +209 -0
- package/cdktf.out/stacks/testAzureLinuxFunctionApp/cdk.tf.json +439 -0
- package/cdktf.out/stacks/testAzureLinuxVirtualMachineExample/cdk.tf.json +283 -0
- package/cdktf.out/stacks/testAzureLinuxVirtualMachineScaleSetExample/cdk.tf.json +261 -0
- package/cdktf.out/stacks/testAzureLogAnalytics/cdk.tf.json +309 -0
- package/cdktf.out/stacks/testAzureMetricAlert/cdk.tf.json +161 -0
- package/cdktf.out/stacks/testAzureNetworkSecurityGroup/cdk.tf.json +271 -0
- package/cdktf.out/stacks/testAzureQueryRuleAlert/cdk.tf.json +122 -0
- package/cdktf.out/stacks/testAzureResourceGroup/cdk.tf.json +88 -0
- package/cdktf.out/stacks/testAzureStorageAccount/cdk.tf.json +339 -0
- package/cdktf.out/stacks/testAzureVirtualNetwork/cdk.tf.json +264 -0
- package/cdktf.out/stacks/testAzureWindowVirtualMachineScaleSetExample/cdk.tf.json +261 -0
- package/cdktf.out/stacks/testAzureWindowsVirtualMachineExample/cdk.tf.json +280 -0
- package/cdktf.out/stacks/testExampleAzureResource/cdk.tf.json +167 -0
- package/docs/design_guide.md +309 -0
- package/docs/images/ide-documentation.png +0 -0
- package/docs/testing.md +347 -0
- package/go.mod +73 -0
- package/go.sum +1006 -0
- package/help +51 -0
- package/jest.config.js.old +187 -0
- package/lib/azure-actiongroup/index.d.ts +1 -0
- package/lib/azure-actiongroup/index.js +18 -0
- package/lib/azure-actiongroup/lib/actiongroup.d.ts +49 -0
- package/lib/azure-actiongroup/lib/actiongroup.js +85 -0
- package/lib/azure-actiongroup/lib/index.d.ts +1 -0
- package/lib/azure-actiongroup/lib/index.js +18 -0
- package/lib/azure-actiongroup/model/action-group-props.d.ts +47 -0
- package/lib/azure-actiongroup/model/action-group-props.js +3 -0
- package/lib/azure-actiongroup/model/arm-role-receiver-props.d.ts +20 -0
- package/lib/azure-actiongroup/model/arm-role-receiver-props.js +3 -0
- package/lib/azure-actiongroup/model/azure-app-push-receiver-props.d.ts +14 -0
- package/lib/azure-actiongroup/model/azure-app-push-receiver-props.js +3 -0
- package/lib/azure-actiongroup/model/email-receiver-props.d.ts +19 -0
- package/lib/azure-actiongroup/model/email-receiver-props.js +3 -0
- package/lib/azure-actiongroup/model/eventhub-receiver-props.d.ts +23 -0
- package/lib/azure-actiongroup/model/eventhub-receiver-props.js +3 -0
- package/lib/azure-actiongroup/model/function.d.ts +40 -0
- package/lib/azure-actiongroup/model/function.js +118 -0
- package/lib/azure-actiongroup/model/index.d.ts +10 -0
- package/lib/azure-actiongroup/model/index.js +27 -0
- package/lib/azure-actiongroup/model/logic-app-receiver-props.d.ts +23 -0
- package/lib/azure-actiongroup/model/logic-app-receiver-props.js +3 -0
- package/lib/azure-actiongroup/model/sms-receiver-props.d.ts +18 -0
- package/lib/azure-actiongroup/model/sms-receiver-props.js +3 -0
- package/lib/azure-actiongroup/model/voice-receiver-props.d.ts +18 -0
- package/lib/azure-actiongroup/model/voice-receiver-props.js +3 -0
- package/lib/azure-actiongroup/model/webhook-receiver-props.d.ts +18 -0
- package/lib/azure-actiongroup/model/webhook-receiver-props.js +3 -0
- package/lib/azure-actiongroup/test/AzureActionGroup.spec.d.ts +1 -0
- package/lib/azure-actiongroup/test/AzureActionGroup.spec.js +294 -0
- package/lib/azure-actiongroup/test/ExampleAzureActionGroup.d.ts +5 -0
- package/lib/azure-actiongroup/test/ExampleAzureActionGroup.js +66 -0
- package/lib/azure-applicationgateway/index.d.ts +1 -0
- package/lib/azure-applicationgateway/index.js +18 -0
- package/lib/azure-applicationgateway/lib/gateway.d.ts +248 -0
- package/lib/azure-applicationgateway/lib/gateway.js +199 -0
- package/lib/azure-applicationgateway/lib/index.d.ts +1 -0
- package/lib/azure-applicationgateway/lib/index.js +18 -0
- package/lib/azure-applicationgateway/test/AzureApplicationGateway.spec.d.ts +1 -0
- package/lib/azure-applicationgateway/test/AzureApplicationGateway.spec.js +106 -0
- package/lib/azure-applicationgateway/test/ExampleAzureApplicationGateway.d.ts +5 -0
- package/lib/azure-applicationgateway/test/ExampleAzureApplicationGateway.js +267 -0
- package/lib/azure-applicationinsights/index.d.ts +1 -0
- package/lib/azure-applicationinsights/index.js +18 -0
- package/lib/azure-applicationinsights/lib/appinsights.d.ts +110 -0
- package/lib/azure-applicationinsights/lib/appinsights.js +134 -0
- package/lib/azure-applicationinsights/lib/index.d.ts +1 -0
- package/lib/azure-applicationinsights/lib/index.js +18 -0
- package/lib/azure-applicationinsights/test/AzureAppInsights.spec.d.ts +1 -0
- package/lib/azure-applicationinsights/test/AzureAppInsights.spec.js +55 -0
- package/lib/azure-applicationinsights/test/ExampleAzureApplicationInsights.d.ts +5 -0
- package/lib/azure-applicationinsights/test/ExampleAzureApplicationInsights.js +87 -0
- package/lib/azure-containerregistry/index.d.ts +1 -0
- package/lib/azure-containerregistry/index.js +18 -0
- package/lib/azure-containerregistry/lib/index.d.ts +1 -0
- package/lib/azure-containerregistry/lib/index.js +18 -0
- package/lib/azure-containerregistry/lib/registry.d.ts +70 -0
- package/lib/azure-containerregistry/lib/registry.js +76 -0
- package/lib/azure-containerregistry/test/AzureContainerRegistry.spec.d.ts +1 -0
- package/lib/azure-containerregistry/test/AzureContainerRegistry.spec.js +50 -0
- package/lib/azure-containerregistry/test/ExampleAzureContainerRegistry.d.ts +5 -0
- package/lib/azure-containerregistry/test/ExampleAzureContainerRegistry.js +57 -0
- package/lib/azure-datalake/index.d.ts +1 -0
- package/lib/azure-datalake/index.js +18 -0
- package/lib/azure-datalake/lib/datalake.d.ts +64 -0
- package/lib/azure-datalake/lib/datalake.js +92 -0
- package/lib/azure-datalake/lib/filesystem.d.ts +70 -0
- package/lib/azure-datalake/lib/filesystem.js +83 -0
- package/lib/azure-datalake/lib/index.d.ts +3 -0
- package/lib/azure-datalake/lib/index.js +20 -0
- package/lib/azure-datalake/lib/path.d.ts +49 -0
- package/lib/azure-datalake/lib/path.js +51 -0
- package/lib/azure-eventhub/index.d.ts +1 -0
- package/lib/azure-eventhub/index.js +18 -0
- package/lib/azure-eventhub/lib/authorization.d.ts +58 -0
- package/lib/azure-eventhub/lib/authorization.js +84 -0
- package/lib/azure-eventhub/lib/cluster.d.ts +56 -0
- package/lib/azure-eventhub/lib/cluster.js +64 -0
- package/lib/azure-eventhub/lib/consumer.d.ts +54 -0
- package/lib/azure-eventhub/lib/consumer.js +59 -0
- package/lib/azure-eventhub/lib/index.d.ts +6 -0
- package/lib/azure-eventhub/lib/index.js +23 -0
- package/lib/azure-eventhub/lib/instance.d.ts +164 -0
- package/lib/azure-eventhub/lib/instance.js +184 -0
- package/lib/azure-eventhub/lib/kusto-connection.d.ts +109 -0
- package/lib/azure-eventhub/lib/kusto-connection.js +76 -0
- package/lib/azure-eventhub/lib/namespace.d.ts +151 -0
- package/lib/azure-eventhub/lib/namespace.js +131 -0
- package/lib/azure-eventhub/test/AzureEventhub.spec.d.ts +1 -0
- package/lib/azure-eventhub/test/AzureEventhub.spec.js +56 -0
- package/lib/azure-eventhub/test/ExampleAzureEventhub.d.ts +5 -0
- package/lib/azure-eventhub/test/ExampleAzureEventhub.js +72 -0
- package/lib/azure-functionapp/index.d.ts +1 -0
- package/lib/azure-functionapp/index.js +18 -0
- package/lib/azure-functionapp/lib/functionapplinux.d.ts +211 -0
- package/lib/azure-functionapp/lib/functionapplinux.js +141 -0
- package/lib/azure-functionapp/lib/index.d.ts +1 -0
- package/lib/azure-functionapp/lib/index.js +18 -0
- package/lib/azure-functionapp/serviceplanskus.d.ts +70 -0
- package/lib/azure-functionapp/serviceplanskus.js +81 -0
- package/lib/azure-functionapp/test/AzureLinuxFunctionApp.spec.d.ts +1 -0
- package/lib/azure-functionapp/test/AzureLinuxFunctionApp.spec.js +48 -0
- package/lib/azure-functionapp/test/ExampleAzureLinuxFunctionApp.d.ts +5 -0
- package/lib/azure-functionapp/test/ExampleAzureLinuxFunctionApp.js +123 -0
- package/lib/azure-keyvault/index.d.ts +1 -0
- package/lib/azure-keyvault/index.js +18 -0
- package/lib/azure-keyvault/lib/certificate.d.ts +133 -0
- package/lib/azure-keyvault/lib/certificate.js +146 -0
- package/lib/azure-keyvault/lib/index.d.ts +5 -0
- package/lib/azure-keyvault/lib/index.js +22 -0
- package/lib/azure-keyvault/lib/key.d.ts +72 -0
- package/lib/azure-keyvault/lib/key.js +69 -0
- package/lib/azure-keyvault/lib/policy.d.ts +76 -0
- package/lib/azure-keyvault/lib/policy.js +56 -0
- package/lib/azure-keyvault/lib/secret.d.ts +70 -0
- package/lib/azure-keyvault/lib/secret.js +64 -0
- package/lib/azure-keyvault/lib/vault.d.ts +282 -0
- package/lib/azure-keyvault/lib/vault.js +392 -0
- package/lib/azure-keyvault/test/AzureKeyVault.spec.d.ts +1 -0
- package/lib/azure-keyvault/test/AzureKeyVault.spec.js +63 -0
- package/lib/azure-keyvault/test/ExampleAzureKeyVault.d.ts +5 -0
- package/lib/azure-keyvault/test/ExampleAzureKeyVault.js +112 -0
- package/lib/azure-kubernetes/index.d.ts +1 -0
- package/lib/azure-kubernetes/index.js +18 -0
- package/lib/azure-kubernetes/lib/cluster.d.ts +93 -0
- package/lib/azure-kubernetes/lib/cluster.js +63 -0
- package/lib/azure-kubernetes/lib/index.d.ts +1 -0
- package/lib/azure-kubernetes/lib/index.js +18 -0
- package/lib/azure-kubernetes/test/AzureKubernetesCluster.spec.d.ts +1 -0
- package/lib/azure-kubernetes/test/AzureKubernetesCluster.spec.js +56 -0
- package/lib/azure-kubernetes/test/ExampleAzureKubernetesCluster.d.ts +5 -0
- package/lib/azure-kubernetes/test/ExampleAzureKubernetesCluster.js +65 -0
- package/lib/azure-kusto/index.d.ts +1 -0
- package/lib/azure-kusto/index.js +18 -0
- package/lib/azure-kusto/lib/cluster.d.ts +136 -0
- package/lib/azure-kusto/lib/cluster.js +138 -0
- package/lib/azure-kusto/lib/compute-specification.d.ts +71 -0
- package/lib/azure-kusto/lib/compute-specification.js +651 -0
- package/lib/azure-kusto/lib/database.d.ts +162 -0
- package/lib/azure-kusto/lib/database.js +180 -0
- package/lib/azure-kusto/lib/index.d.ts +3 -0
- package/lib/azure-kusto/lib/index.js +20 -0
- package/lib/azure-kusto/test/AzureKusto.spec.d.ts +1 -0
- package/lib/azure-kusto/test/AzureKusto.spec.js +50 -0
- package/lib/azure-kusto/test/ExampleAzureKusto.d.ts +5 -0
- package/lib/azure-kusto/test/ExampleAzureKusto.js +71 -0
- package/lib/azure-loganalytics/index.d.ts +1 -0
- package/lib/azure-loganalytics/index.js +18 -0
- package/lib/azure-loganalytics/lib/index.d.ts +1 -0
- package/lib/azure-loganalytics/lib/index.js +18 -0
- package/lib/azure-loganalytics/lib/workspace.d.ts +163 -0
- package/lib/azure-loganalytics/lib/workspace.js +126 -0
- package/lib/azure-loganalytics/test/AzureLogAnalytics.spec.d.ts +1 -0
- package/lib/azure-loganalytics/test/AzureLogAnalytics.spec.js +50 -0
- package/lib/azure-loganalytics/test/ExampleAzureLogAnalytics.d.ts +5 -0
- package/lib/azure-loganalytics/test/ExampleAzureLogAnalytics.js +115 -0
- package/lib/azure-metricalert/index.d.ts +2 -0
- package/lib/azure-metricalert/index.js +19 -0
- package/lib/azure-metricalert/lib/index.d.ts +1 -0
- package/lib/azure-metricalert/lib/index.js +18 -0
- package/lib/azure-metricalert/lib/metric-alert.d.ts +56 -0
- package/lib/azure-metricalert/lib/metric-alert.js +128 -0
- package/lib/azure-metricalert/model/action-props.d.ts +11 -0
- package/lib/azure-metricalert/model/action-props.js +3 -0
- package/lib/azure-metricalert/model/criteria-base-props.d.ts +38 -0
- package/lib/azure-metricalert/model/criteria-base-props.js +3 -0
- package/lib/azure-metricalert/model/criteria-dimension-props.d.ts +21 -0
- package/lib/azure-metricalert/model/criteria-dimension-props.js +3 -0
- package/lib/azure-metricalert/model/criteria-props.d.ts +12 -0
- package/lib/azure-metricalert/model/criteria-props.js +3 -0
- package/lib/azure-metricalert/model/dynamic-criteria-props.d.ts +29 -0
- package/lib/azure-metricalert/model/dynamic-criteria-props.js +3 -0
- package/lib/azure-metricalert/model/function.d.ts +28 -0
- package/lib/azure-metricalert/model/function.js +78 -0
- package/lib/azure-metricalert/model/index.d.ts +7 -0
- package/lib/azure-metricalert/model/index.js +24 -0
- package/lib/azure-metricalert/model/metric-alert-props.d.ts +86 -0
- package/lib/azure-metricalert/model/metric-alert-props.js +3 -0
- package/lib/azure-metricalert/test/AzureMetricAlert.spec.d.ts +1 -0
- package/lib/azure-metricalert/test/AzureMetricAlert.spec.js +63 -0
- package/lib/azure-metricalert/test/ExampleAzureMetricAlert.d.ts +5 -0
- package/lib/azure-metricalert/test/ExampleAzureMetricAlert.js +81 -0
- package/lib/azure-networksecuritygroup/index.d.ts +1 -0
- package/lib/azure-networksecuritygroup/index.js +18 -0
- package/lib/azure-networksecuritygroup/lib/index.d.ts +2 -0
- package/lib/azure-networksecuritygroup/lib/index.js +19 -0
- package/lib/azure-networksecuritygroup/lib/preconfigured-rules.d.ts +77 -0
- package/lib/azure-networksecuritygroup/lib/preconfigured-rules.js +608 -0
- package/lib/azure-networksecuritygroup/lib/securitygroup.d.ts +190 -0
- package/lib/azure-networksecuritygroup/lib/securitygroup.js +172 -0
- package/lib/azure-networksecuritygroup/test/AzureNetworkSecurityGroup.spec.d.ts +1 -0
- package/lib/azure-networksecuritygroup/test/AzureNetworkSecurityGroup.spec.js +54 -0
- package/lib/azure-networksecuritygroup/test/ExampleAzureNetworkSecurityGroup.d.ts +5 -0
- package/lib/azure-networksecuritygroup/test/ExampleAzureNetworkSecurityGroup.js +97 -0
- package/lib/azure-queryrulealert/index.d.ts +1 -0
- package/lib/azure-queryrulealert/index.js +18 -0
- package/lib/azure-queryrulealert/lib/index.d.ts +1 -0
- package/lib/azure-queryrulealert/lib/index.js +18 -0
- package/lib/azure-queryrulealert/lib/query-rule-alert.d.ts +175 -0
- package/lib/azure-queryrulealert/lib/query-rule-alert.js +205 -0
- package/lib/azure-queryrulealert/test/AzureQueryRuleAlert.spec.d.ts +1 -0
- package/lib/azure-queryrulealert/test/AzureQueryRuleAlert.spec.js +67 -0
- package/lib/azure-queryrulealert/test/ExampleAzureQueryRuleAlert.d.ts +5 -0
- package/lib/azure-queryrulealert/test/ExampleAzureQueryRuleAlert.js +67 -0
- package/lib/azure-resourcegroup/index.d.ts +1 -0
- package/lib/azure-resourcegroup/index.js +18 -0
- package/lib/azure-resourcegroup/lib/index.d.ts +1 -0
- package/lib/azure-resourcegroup/lib/index.js +18 -0
- package/lib/azure-resourcegroup/lib/resource-group.d.ts +66 -0
- package/lib/azure-resourcegroup/lib/resource-group.js +77 -0
- package/lib/azure-resourcegroup/test/AzureResourceGroup.spec.d.ts +1 -0
- package/lib/azure-resourcegroup/test/AzureResourceGroup.spec.js +41 -0
- package/lib/azure-resourcegroup/test/ExampleAzureResourceGroup.d.ts +5 -0
- package/lib/azure-resourcegroup/test/ExampleAzureResourceGroup.js +29 -0
- package/lib/azure-storageaccount/index.d.ts +1 -0
- package/lib/azure-storageaccount/index.js +18 -0
- package/lib/azure-storageaccount/lib/account.d.ts +232 -0
- package/lib/azure-storageaccount/lib/account.js +225 -0
- package/lib/azure-storageaccount/lib/container.d.ts +122 -0
- package/lib/azure-storageaccount/lib/container.js +167 -0
- package/lib/azure-storageaccount/lib/fileshare.d.ts +105 -0
- package/lib/azure-storageaccount/lib/fileshare.js +126 -0
- package/lib/azure-storageaccount/lib/index.d.ts +5 -0
- package/lib/azure-storageaccount/lib/index.js +22 -0
- package/lib/azure-storageaccount/lib/queue.d.ts +35 -0
- package/lib/azure-storageaccount/lib/queue.js +52 -0
- package/lib/azure-storageaccount/lib/table.d.ts +38 -0
- package/lib/azure-storageaccount/lib/table.js +55 -0
- package/lib/azure-storageaccount/test/AzureStorageAccount.spec.d.ts +1 -0
- package/lib/azure-storageaccount/test/AzureStorageAccount.spec.js +45 -0
- package/lib/azure-storageaccount/test/ExampleAzureStorageAccount.d.ts +5 -0
- package/lib/azure-storageaccount/test/ExampleAzureStorageAccount.js +102 -0
- package/lib/azure-virtualmachine/index.d.ts +1 -0
- package/lib/azure-virtualmachine/index.js +18 -0
- package/lib/azure-virtualmachine/lib/image-references.d.ts +22 -0
- package/lib/azure-virtualmachine/lib/image-references.js +128 -0
- package/lib/azure-virtualmachine/lib/index.d.ts +2 -0
- package/lib/azure-virtualmachine/lib/index.js +19 -0
- package/lib/azure-virtualmachine/lib/vm.d.ts +281 -0
- package/lib/azure-virtualmachine/lib/vm.js +283 -0
- package/lib/azure-virtualmachine/test/AzureLinuxVirtualMachine.spec.d.ts +1 -0
- package/lib/azure-virtualmachine/test/AzureLinuxVirtualMachine.spec.js +48 -0
- package/lib/azure-virtualmachine/test/AzureWindowsVirtualMachine.spec.d.ts +1 -0
- package/lib/azure-virtualmachine/test/AzureWindowsVirtualMachine.spec.js +50 -0
- package/lib/azure-virtualmachine/test/ExampleAzureLinuxVirtualMachine.d.ts +5 -0
- package/lib/azure-virtualmachine/test/ExampleAzureLinuxVirtualMachine.js +106 -0
- package/lib/azure-virtualmachine/test/ExampleAzureWindowsVirtualMachine.d.ts +5 -0
- package/lib/azure-virtualmachine/test/ExampleAzureWindowsVirtualMachine.js +102 -0
- package/lib/azure-virtualmachinescaleset/index.d.ts +1 -0
- package/lib/azure-virtualmachinescaleset/index.js +18 -0
- package/lib/azure-virtualmachinescaleset/lib/cluster.d.ts +324 -0
- package/lib/azure-virtualmachinescaleset/lib/cluster.js +264 -0
- package/lib/azure-virtualmachinescaleset/lib/index.d.ts +1 -0
- package/lib/azure-virtualmachinescaleset/lib/index.js +18 -0
- package/lib/azure-virtualmachinescaleset/test/AzureLinuxVirtualMachineScaleSet.spec.d.ts +1 -0
- package/lib/azure-virtualmachinescaleset/test/AzureLinuxVirtualMachineScaleSet.spec.js +48 -0
- package/lib/azure-virtualmachinescaleset/test/AzureWindowsVirtualMachineScaleSet.spec.d.ts +1 -0
- package/lib/azure-virtualmachinescaleset/test/AzureWindowsVirtualMachineScaleSet.spec.js +50 -0
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureLinuxVirtualMachineScaleSet.d.ts +5 -0
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureLinuxVirtualMachineScaleSet.js +107 -0
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureWindowsVirtualMachineScaleSet.d.ts +5 -0
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureWindowsVirtualMachineScaleSet.js +103 -0
- package/lib/azure-virtualnetwork/index.d.ts +1 -0
- package/lib/azure-virtualnetwork/index.js +18 -0
- package/lib/azure-virtualnetwork/lib/index.d.ts +2 -0
- package/lib/azure-virtualnetwork/lib/index.js +19 -0
- package/lib/azure-virtualnetwork/lib/network.d.ts +122 -0
- package/lib/azure-virtualnetwork/lib/network.js +120 -0
- package/lib/azure-virtualnetwork/lib/peering.d.ts +90 -0
- package/lib/azure-virtualnetwork/lib/peering.js +71 -0
- package/lib/azure-virtualnetwork/test/AzureVirtualNetwork.spec.d.ts +1 -0
- package/lib/azure-virtualnetwork/test/AzureVirtualNetwork.spec.js +48 -0
- package/lib/azure-virtualnetwork/test/ExampleAzureVirtualNetwork.d.ts +5 -0
- package/lib/azure-virtualnetwork/test/ExampleAzureVirtualNetwork.js +88 -0
- package/lib/core-azure/index.d.ts +1 -0
- package/lib/core-azure/index.js +18 -0
- package/lib/core-azure/lib/diagsettings.d.ts +89 -0
- package/lib/core-azure/lib/diagsettings.js +83 -0
- package/lib/core-azure/lib/index.d.ts +3 -0
- package/lib/core-azure/lib/index.js +20 -0
- package/lib/core-azure/lib/rbac.d.ts +50 -0
- package/lib/core-azure/lib/rbac.js +48 -0
- package/lib/core-azure/lib/resource.d.ts +62 -0
- package/lib/core-azure/lib/resource.js +118 -0
- package/lib/core-azure/test/AzureResource.spec.d.ts +1 -0
- package/lib/core-azure/test/AzureResource.spec.js +19 -0
- package/lib/core-azure/test/ExampleAzureResource.d.ts +5 -0
- package/lib/core-azure/test/ExampleAzureResource.js +67 -0
- package/lib/index.d.ts +18 -0
- package/lib/index.js +22 -0
- package/lib/testing/index.d.ts +6 -0
- package/lib/testing/index.js +18 -0
- package/lib/util/azureTenantIdHelpers.d.ts +2 -0
- package/lib/util/azureTenantIdHelpers.js +34 -0
- package/lib/util/randomName.d.ts +1 -0
- package/lib/util/randomName.js +13 -0
- package/node_modules/moment/CHANGELOG.md +996 -0
- package/node_modules/moment/LICENSE +22 -0
- package/node_modules/moment/README.md +55 -0
- package/node_modules/moment/dist/locale/af.js +71 -0
- package/node_modules/moment/dist/locale/ar-dz.js +156 -0
- package/node_modules/moment/dist/locale/ar-kw.js +55 -0
- package/node_modules/moment/dist/locale/ar-ly.js +171 -0
- package/node_modules/moment/dist/locale/ar-ma.js +56 -0
- package/node_modules/moment/dist/locale/ar-ps.js +112 -0
- package/node_modules/moment/dist/locale/ar-sa.js +105 -0
- package/node_modules/moment/dist/locale/ar-tn.js +55 -0
- package/node_modules/moment/dist/locale/ar.js +189 -0
- package/node_modules/moment/dist/locale/az.js +102 -0
- package/node_modules/moment/dist/locale/be.js +142 -0
- package/node_modules/moment/dist/locale/bg.js +87 -0
- package/node_modules/moment/dist/locale/bm.js +52 -0
- package/node_modules/moment/dist/locale/bn-bd.js +129 -0
- package/node_modules/moment/dist/locale/bn.js +119 -0
- package/node_modules/moment/dist/locale/bo.js +124 -0
- package/node_modules/moment/dist/locale/br.js +168 -0
- package/node_modules/moment/dist/locale/bs.js +160 -0
- package/node_modules/moment/dist/locale/ca.js +100 -0
- package/node_modules/moment/dist/locale/cs.js +181 -0
- package/node_modules/moment/dist/locale/cv.js +63 -0
- package/node_modules/moment/dist/locale/cy.js +98 -0
- package/node_modules/moment/dist/locale/da.js +53 -0
- package/node_modules/moment/dist/locale/de-at.js +79 -0
- package/node_modules/moment/dist/locale/de-ch.js +78 -0
- package/node_modules/moment/dist/locale/de.js +78 -0
- package/node_modules/moment/dist/locale/dv.js +90 -0
- package/node_modules/moment/dist/locale/el.js +106 -0
- package/node_modules/moment/dist/locale/en-au.js +68 -0
- package/node_modules/moment/dist/locale/en-ca.js +64 -0
- package/node_modules/moment/dist/locale/en-gb.js +68 -0
- package/node_modules/moment/dist/locale/en-ie.js +68 -0
- package/node_modules/moment/dist/locale/en-il.js +64 -0
- package/node_modules/moment/dist/locale/en-in.js +68 -0
- package/node_modules/moment/dist/locale/en-nz.js +68 -0
- package/node_modules/moment/dist/locale/en-sg.js +68 -0
- package/node_modules/moment/dist/locale/eo.js +68 -0
- package/node_modules/moment/dist/locale/es-do.js +108 -0
- package/node_modules/moment/dist/locale/es-mx.js +110 -0
- package/node_modules/moment/dist/locale/es-us.js +110 -0
- package/node_modules/moment/dist/locale/es.js +110 -0
- package/node_modules/moment/dist/locale/et.js +78 -0
- package/node_modules/moment/dist/locale/eu.js +65 -0
- package/node_modules/moment/dist/locale/fa.js +113 -0
- package/node_modules/moment/dist/locale/fi.js +124 -0
- package/node_modules/moment/dist/locale/fil.js +58 -0
- package/node_modules/moment/dist/locale/fo.js +57 -0
- package/node_modules/moment/dist/locale/fr-ca.js +70 -0
- package/node_modules/moment/dist/locale/fr-ch.js +74 -0
- package/node_modules/moment/dist/locale/fr.js +108 -0
- package/node_modules/moment/dist/locale/fy.js +75 -0
- package/node_modules/moment/dist/locale/ga.js +95 -0
- package/node_modules/moment/dist/locale/gd.js +95 -0
- package/node_modules/moment/dist/locale/gl.js +75 -0
- package/node_modules/moment/dist/locale/gom-deva.js +126 -0
- package/node_modules/moment/dist/locale/gom-latn.js +124 -0
- package/node_modules/moment/dist/locale/gu.js +122 -0
- package/node_modules/moment/dist/locale/he.js +94 -0
- package/node_modules/moment/dist/locale/hi.js +168 -0
- package/node_modules/moment/dist/locale/hr.js +156 -0
- package/node_modules/moment/dist/locale/hu.js +118 -0
- package/node_modules/moment/dist/locale/hy-am.js +94 -0
- package/node_modules/moment/dist/locale/id.js +76 -0
- package/node_modules/moment/dist/locale/is.js +140 -0
- package/node_modules/moment/dist/locale/it-ch.js +64 -0
- package/node_modules/moment/dist/locale/it.js +106 -0
- package/node_modules/moment/dist/locale/ja.js +148 -0
- package/node_modules/moment/dist/locale/jv.js +76 -0
- package/node_modules/moment/dist/locale/ka.js +92 -0
- package/node_modules/moment/dist/locale/kk.js +82 -0
- package/node_modules/moment/dist/locale/km.js +103 -0
- package/node_modules/moment/dist/locale/kn.js +124 -0
- package/node_modules/moment/dist/locale/ko.js +75 -0
- package/node_modules/moment/dist/locale/ku-kmr.js +121 -0
- package/node_modules/moment/dist/locale/ku.js +118 -0
- package/node_modules/moment/dist/locale/ky.js +84 -0
- package/node_modules/moment/dist/locale/lb.js +137 -0
- package/node_modules/moment/dist/locale/lo.js +66 -0
- package/node_modules/moment/dist/locale/lt.js +125 -0
- package/node_modules/moment/dist/locale/lv.js +94 -0
- package/node_modules/moment/dist/locale/me.js +117 -0
- package/node_modules/moment/dist/locale/mi.js +60 -0
- package/node_modules/moment/dist/locale/mk.js +85 -0
- package/node_modules/moment/dist/locale/ml.js +82 -0
- package/node_modules/moment/dist/locale/mn.js +100 -0
- package/node_modules/moment/dist/locale/mr.js +203 -0
- package/node_modules/moment/dist/locale/ms-my.js +76 -0
- package/node_modules/moment/dist/locale/ms.js +75 -0
- package/node_modules/moment/dist/locale/mt.js +56 -0
- package/node_modules/moment/dist/locale/my.js +91 -0
- package/node_modules/moment/dist/locale/nb.js +60 -0
- package/node_modules/moment/dist/locale/ne.js +121 -0
- package/node_modules/moment/dist/locale/nl-be.js +102 -0
- package/node_modules/moment/dist/locale/nl.js +104 -0
- package/node_modules/moment/dist/locale/nn.js +59 -0
- package/node_modules/moment/dist/locale/oc-lnc.js +85 -0
- package/node_modules/moment/dist/locale/pa-in.js +122 -0
- package/node_modules/moment/dist/locale/pl.js +140 -0
- package/node_modules/moment/dist/locale/pt-br.js +58 -0
- package/node_modules/moment/dist/locale/pt.js +63 -0
- package/node_modules/moment/dist/locale/ro.js +76 -0
- package/node_modules/moment/dist/locale/ru.js +213 -0
- package/node_modules/moment/dist/locale/sd.js +81 -0
- package/node_modules/moment/dist/locale/se.js +57 -0
- package/node_modules/moment/dist/locale/si.js +69 -0
- package/node_modules/moment/dist/locale/sk.js +145 -0
- package/node_modules/moment/dist/locale/sl.js +171 -0
- package/node_modules/moment/dist/locale/sq.js +65 -0
- package/node_modules/moment/dist/locale/sr-cyrl.js +127 -0
- package/node_modules/moment/dist/locale/sr.js +129 -0
- package/node_modules/moment/dist/locale/ss.js +84 -0
- package/node_modules/moment/dist/locale/sv.js +68 -0
- package/node_modules/moment/dist/locale/sw.js +55 -0
- package/node_modules/moment/dist/locale/ta.js +131 -0
- package/node_modules/moment/dist/locale/te.js +88 -0
- package/node_modules/moment/dist/locale/tet.js +68 -0
- package/node_modules/moment/dist/locale/tg.js +117 -0
- package/node_modules/moment/dist/locale/th.js +65 -0
- package/node_modules/moment/dist/locale/tk.js +91 -0
- package/node_modules/moment/dist/locale/tl-ph.js +57 -0
- package/node_modules/moment/dist/locale/tlh.js +124 -0
- package/node_modules/moment/dist/locale/tr.js +106 -0
- package/node_modules/moment/dist/locale/tzl.js +89 -0
- package/node_modules/moment/dist/locale/tzm-latn.js +54 -0
- package/node_modules/moment/dist/locale/tzm.js +54 -0
- package/node_modules/moment/dist/locale/ug-cn.js +111 -0
- package/node_modules/moment/dist/locale/uk.js +167 -0
- package/node_modules/moment/dist/locale/ur.js +82 -0
- package/node_modules/moment/dist/locale/uz-latn.js +54 -0
- package/node_modules/moment/dist/locale/uz.js +51 -0
- package/node_modules/moment/dist/locale/vi.js +80 -0
- package/node_modules/moment/dist/locale/x-pseudo.js +73 -0
- package/node_modules/moment/dist/locale/yo.js +53 -0
- package/node_modules/moment/dist/locale/zh-cn.js +120 -0
- package/node_modules/moment/dist/locale/zh-hk.js +101 -0
- package/node_modules/moment/dist/locale/zh-mo.js +100 -0
- package/node_modules/moment/dist/locale/zh-tw.js +99 -0
- package/node_modules/moment/dist/moment.js +5680 -0
- package/node_modules/moment/ender.js +1 -0
- package/node_modules/moment/locale/af.js +82 -0
- package/node_modules/moment/locale/ar-dz.js +167 -0
- package/node_modules/moment/locale/ar-kw.js +66 -0
- package/node_modules/moment/locale/ar-ly.js +182 -0
- package/node_modules/moment/locale/ar-ma.js +67 -0
- package/node_modules/moment/locale/ar-ps.js +123 -0
- package/node_modules/moment/locale/ar-sa.js +116 -0
- package/node_modules/moment/locale/ar-tn.js +66 -0
- package/node_modules/moment/locale/ar.js +200 -0
- package/node_modules/moment/locale/az.js +113 -0
- package/node_modules/moment/locale/be.js +153 -0
- package/node_modules/moment/locale/bg.js +98 -0
- package/node_modules/moment/locale/bm.js +62 -0
- package/node_modules/moment/locale/bn-bd.js +140 -0
- package/node_modules/moment/locale/bn.js +130 -0
- package/node_modules/moment/locale/bo.js +135 -0
- package/node_modules/moment/locale/br.js +179 -0
- package/node_modules/moment/locale/bs.js +171 -0
- package/node_modules/moment/locale/ca.js +111 -0
- package/node_modules/moment/locale/cs.js +192 -0
- package/node_modules/moment/locale/cv.js +74 -0
- package/node_modules/moment/locale/cy.js +109 -0
- package/node_modules/moment/locale/da.js +64 -0
- package/node_modules/moment/locale/de-at.js +90 -0
- package/node_modules/moment/locale/de-ch.js +87 -0
- package/node_modules/moment/locale/de.js +89 -0
- package/node_modules/moment/locale/dv.js +101 -0
- package/node_modules/moment/locale/el.js +117 -0
- package/node_modules/moment/locale/en-au.js +79 -0
- package/node_modules/moment/locale/en-ca.js +75 -0
- package/node_modules/moment/locale/en-gb.js +79 -0
- package/node_modules/moment/locale/en-ie.js +79 -0
- package/node_modules/moment/locale/en-il.js +75 -0
- package/node_modules/moment/locale/en-in.js +79 -0
- package/node_modules/moment/locale/en-nz.js +79 -0
- package/node_modules/moment/locale/en-sg.js +79 -0
- package/node_modules/moment/locale/eo.js +79 -0
- package/node_modules/moment/locale/es-do.js +119 -0
- package/node_modules/moment/locale/es-mx.js +121 -0
- package/node_modules/moment/locale/es-us.js +121 -0
- package/node_modules/moment/locale/es.js +121 -0
- package/node_modules/moment/locale/et.js +89 -0
- package/node_modules/moment/locale/eu.js +76 -0
- package/node_modules/moment/locale/fa.js +124 -0
- package/node_modules/moment/locale/fi.js +135 -0
- package/node_modules/moment/locale/fil.js +69 -0
- package/node_modules/moment/locale/fo.js +68 -0
- package/node_modules/moment/locale/fr-ca.js +81 -0
- package/node_modules/moment/locale/fr-ch.js +85 -0
- package/node_modules/moment/locale/fr.js +119 -0
- package/node_modules/moment/locale/fy.js +86 -0
- package/node_modules/moment/locale/ga.js +106 -0
- package/node_modules/moment/locale/gd.js +106 -0
- package/node_modules/moment/locale/gl.js +86 -0
- package/node_modules/moment/locale/gom-deva.js +137 -0
- package/node_modules/moment/locale/gom-latn.js +135 -0
- package/node_modules/moment/locale/gu.js +133 -0
- package/node_modules/moment/locale/he.js +105 -0
- package/node_modules/moment/locale/hi.js +179 -0
- package/node_modules/moment/locale/hr.js +167 -0
- package/node_modules/moment/locale/hu.js +129 -0
- package/node_modules/moment/locale/hy-am.js +105 -0
- package/node_modules/moment/locale/id.js +87 -0
- package/node_modules/moment/locale/is.js +151 -0
- package/node_modules/moment/locale/it-ch.js +75 -0
- package/node_modules/moment/locale/it.js +117 -0
- package/node_modules/moment/locale/ja.js +159 -0
- package/node_modules/moment/locale/jv.js +87 -0
- package/node_modules/moment/locale/ka.js +103 -0
- package/node_modules/moment/locale/kk.js +93 -0
- package/node_modules/moment/locale/km.js +114 -0
- package/node_modules/moment/locale/kn.js +135 -0
- package/node_modules/moment/locale/ko.js +86 -0
- package/node_modules/moment/locale/ku-kmr.js +125 -0
- package/node_modules/moment/locale/ku.js +129 -0
- package/node_modules/moment/locale/ky.js +95 -0
- package/node_modules/moment/locale/lb.js +148 -0
- package/node_modules/moment/locale/lo.js +77 -0
- package/node_modules/moment/locale/lt.js +136 -0
- package/node_modules/moment/locale/lv.js +105 -0
- package/node_modules/moment/locale/me.js +128 -0
- package/node_modules/moment/locale/mi.js +71 -0
- package/node_modules/moment/locale/mk.js +97 -0
- package/node_modules/moment/locale/ml.js +93 -0
- package/node_modules/moment/locale/mn.js +111 -0
- package/node_modules/moment/locale/mr.js +214 -0
- package/node_modules/moment/locale/ms-my.js +87 -0
- package/node_modules/moment/locale/ms.js +86 -0
- package/node_modules/moment/locale/mt.js +67 -0
- package/node_modules/moment/locale/my.js +102 -0
- package/node_modules/moment/locale/nb.js +71 -0
- package/node_modules/moment/locale/ne.js +132 -0
- package/node_modules/moment/locale/nl-be.js +113 -0
- package/node_modules/moment/locale/nl.js +115 -0
- package/node_modules/moment/locale/nn.js +70 -0
- package/node_modules/moment/locale/oc-lnc.js +96 -0
- package/node_modules/moment/locale/pa-in.js +133 -0
- package/node_modules/moment/locale/pl.js +151 -0
- package/node_modules/moment/locale/pt-br.js +69 -0
- package/node_modules/moment/locale/pt.js +74 -0
- package/node_modules/moment/locale/ro.js +87 -0
- package/node_modules/moment/locale/ru.js +224 -0
- package/node_modules/moment/locale/sd.js +92 -0
- package/node_modules/moment/locale/se.js +68 -0
- package/node_modules/moment/locale/si.js +80 -0
- package/node_modules/moment/locale/sk.js +156 -0
- package/node_modules/moment/locale/sl.js +182 -0
- package/node_modules/moment/locale/sq.js +76 -0
- package/node_modules/moment/locale/sr-cyrl.js +138 -0
- package/node_modules/moment/locale/sr.js +140 -0
- package/node_modules/moment/locale/ss.js +95 -0
- package/node_modules/moment/locale/sv.js +79 -0
- package/node_modules/moment/locale/sw.js +66 -0
- package/node_modules/moment/locale/ta.js +142 -0
- package/node_modules/moment/locale/te.js +99 -0
- package/node_modules/moment/locale/tet.js +79 -0
- package/node_modules/moment/locale/tg.js +128 -0
- package/node_modules/moment/locale/th.js +76 -0
- package/node_modules/moment/locale/tk.js +102 -0
- package/node_modules/moment/locale/tl-ph.js +68 -0
- package/node_modules/moment/locale/tlh.js +135 -0
- package/node_modules/moment/locale/tr.js +117 -0
- package/node_modules/moment/locale/tzl.js +100 -0
- package/node_modules/moment/locale/tzm-latn.js +65 -0
- package/node_modules/moment/locale/tzm.js +65 -0
- package/node_modules/moment/locale/ug-cn.js +122 -0
- package/node_modules/moment/locale/uk.js +178 -0
- package/node_modules/moment/locale/ur.js +93 -0
- package/node_modules/moment/locale/uz-latn.js +65 -0
- package/node_modules/moment/locale/uz.js +62 -0
- package/node_modules/moment/locale/vi.js +91 -0
- package/node_modules/moment/locale/x-pseudo.js +84 -0
- package/node_modules/moment/locale/yo.js +64 -0
- package/node_modules/moment/locale/zh-cn.js +131 -0
- package/node_modules/moment/locale/zh-hk.js +112 -0
- package/node_modules/moment/locale/zh-mo.js +111 -0
- package/node_modules/moment/locale/zh-tw.js +110 -0
- package/node_modules/moment/min/locales.js +12800 -0
- package/node_modules/moment/min/locales.min.js +2 -0
- package/node_modules/moment/min/locales.min.js.map +1 -0
- package/node_modules/moment/min/moment-with-locales.js +18472 -0
- package/node_modules/moment/min/moment-with-locales.min.js +2 -0
- package/node_modules/moment/min/moment-with-locales.min.js.map +1 -0
- package/node_modules/moment/min/moment.min.js +2 -0
- package/node_modules/moment/min/moment.min.js.map +1 -0
- package/node_modules/moment/moment.d.ts +796 -0
- package/node_modules/moment/moment.js +5688 -0
- package/node_modules/moment/package.js +11 -0
- package/node_modules/moment/package.json +116 -0
- package/node_modules/moment/src/lib/create/check-overflow.js +57 -0
- package/node_modules/moment/src/lib/create/date-from-array.js +35 -0
- package/node_modules/moment/src/lib/create/from-anything.js +117 -0
- package/node_modules/moment/src/lib/create/from-array.js +187 -0
- package/node_modules/moment/src/lib/create/from-object.js +20 -0
- package/node_modules/moment/src/lib/create/from-string-and-array.js +67 -0
- package/node_modules/moment/src/lib/create/from-string-and-format.js +135 -0
- package/node_modules/moment/src/lib/create/from-string.js +258 -0
- package/node_modules/moment/src/lib/create/local.js +5 -0
- package/node_modules/moment/src/lib/create/parsing-flags.js +28 -0
- package/node_modules/moment/src/lib/create/utc.js +5 -0
- package/node_modules/moment/src/lib/create/valid.js +51 -0
- package/node_modules/moment/src/lib/duration/abs.js +18 -0
- package/node_modules/moment/src/lib/duration/add-subtract.js +21 -0
- package/node_modules/moment/src/lib/duration/as.js +76 -0
- package/node_modules/moment/src/lib/duration/bubble.js +68 -0
- package/node_modules/moment/src/lib/duration/clone.js +5 -0
- package/node_modules/moment/src/lib/duration/constructor.js +42 -0
- package/node_modules/moment/src/lib/duration/create.js +133 -0
- package/node_modules/moment/src/lib/duration/duration.js +16 -0
- package/node_modules/moment/src/lib/duration/get.js +27 -0
- package/node_modules/moment/src/lib/duration/humanize.js +114 -0
- package/node_modules/moment/src/lib/duration/iso-string.js +68 -0
- package/node_modules/moment/src/lib/duration/prototype.js +78 -0
- package/node_modules/moment/src/lib/duration/valid.js +55 -0
- package/node_modules/moment/src/lib/format/format.js +104 -0
- package/node_modules/moment/src/lib/locale/base-config.js +41 -0
- package/node_modules/moment/src/lib/locale/calendar.js +15 -0
- package/node_modules/moment/src/lib/locale/constructor.js +5 -0
- package/node_modules/moment/src/lib/locale/en.js +39 -0
- package/node_modules/moment/src/lib/locale/formats.js +36 -0
- package/node_modules/moment/src/lib/locale/invalid.js +5 -0
- package/node_modules/moment/src/lib/locale/lists.js +93 -0
- package/node_modules/moment/src/lib/locale/locale.js +45 -0
- package/node_modules/moment/src/lib/locale/locales.js +249 -0
- package/node_modules/moment/src/lib/locale/ordinal.js +8 -0
- package/node_modules/moment/src/lib/locale/pre-post-format.js +3 -0
- package/node_modules/moment/src/lib/locale/prototype.js +88 -0
- package/node_modules/moment/src/lib/locale/relative.js +32 -0
- package/node_modules/moment/src/lib/locale/set.js +56 -0
- package/node_modules/moment/src/lib/moment/add-subtract.js +61 -0
- package/node_modules/moment/src/lib/moment/calendar.js +53 -0
- package/node_modules/moment/src/lib/moment/clone.js +5 -0
- package/node_modules/moment/src/lib/moment/compare.js +72 -0
- package/node_modules/moment/src/lib/moment/constructor.js +80 -0
- package/node_modules/moment/src/lib/moment/creation-data.js +9 -0
- package/node_modules/moment/src/lib/moment/diff.js +79 -0
- package/node_modules/moment/src/lib/moment/format.js +78 -0
- package/node_modules/moment/src/lib/moment/from.js +20 -0
- package/node_modules/moment/src/lib/moment/get-set.js +117 -0
- package/node_modules/moment/src/lib/moment/locale.js +34 -0
- package/node_modules/moment/src/lib/moment/min-max.js +62 -0
- package/node_modules/moment/src/lib/moment/moment.js +28 -0
- package/node_modules/moment/src/lib/moment/now.js +3 -0
- package/node_modules/moment/src/lib/moment/prototype.js +197 -0
- package/node_modules/moment/src/lib/moment/start-end-of.js +164 -0
- package/node_modules/moment/src/lib/moment/to-type.js +42 -0
- package/node_modules/moment/src/lib/moment/to.js +20 -0
- package/node_modules/moment/src/lib/moment/valid.js +15 -0
- package/node_modules/moment/src/lib/parse/regex.js +84 -0
- package/node_modules/moment/src/lib/parse/token.js +36 -0
- package/node_modules/moment/src/lib/units/aliases.js +75 -0
- package/node_modules/moment/src/lib/units/constants.js +9 -0
- package/node_modules/moment/src/lib/units/day-of-month.js +35 -0
- package/node_modules/moment/src/lib/units/day-of-week.js +432 -0
- package/node_modules/moment/src/lib/units/day-of-year.js +28 -0
- package/node_modules/moment/src/lib/units/era.js +293 -0
- package/node_modules/moment/src/lib/units/hour.js +152 -0
- package/node_modules/moment/src/lib/units/millisecond.js +66 -0
- package/node_modules/moment/src/lib/units/minute.js +24 -0
- package/node_modules/moment/src/lib/units/month.js +340 -0
- package/node_modules/moment/src/lib/units/offset.js +249 -0
- package/node_modules/moment/src/lib/units/priorities.js +34 -0
- package/node_modules/moment/src/lib/units/quarter.js +24 -0
- package/node_modules/moment/src/lib/units/second.js +24 -0
- package/node_modules/moment/src/lib/units/timestamp.js +20 -0
- package/node_modules/moment/src/lib/units/timezone.js +16 -0
- package/node_modules/moment/src/lib/units/units.js +20 -0
- package/node_modules/moment/src/lib/units/week-calendar-utils.js +66 -0
- package/node_modules/moment/src/lib/units/week-year.js +128 -0
- package/node_modules/moment/src/lib/units/week.js +62 -0
- package/node_modules/moment/src/lib/units/year.js +75 -0
- package/node_modules/moment/src/lib/utils/abs-ceil.js +7 -0
- package/node_modules/moment/src/lib/utils/abs-floor.js +8 -0
- package/node_modules/moment/src/lib/utils/abs-round.js +7 -0
- package/node_modules/moment/src/lib/utils/compare-arrays.js +18 -0
- package/node_modules/moment/src/lib/utils/defaults.js +10 -0
- package/node_modules/moment/src/lib/utils/deprecate.js +69 -0
- package/node_modules/moment/src/lib/utils/extend.js +19 -0
- package/node_modules/moment/src/lib/utils/has-own-prop.js +3 -0
- package/node_modules/moment/src/lib/utils/hooks.js +13 -0
- package/node_modules/moment/src/lib/utils/index-of.js +18 -0
- package/node_modules/moment/src/lib/utils/is-array.js +6 -0
- package/node_modules/moment/src/lib/utils/is-calendar-spec.js +25 -0
- package/node_modules/moment/src/lib/utils/is-date.js +6 -0
- package/node_modules/moment/src/lib/utils/is-function.js +6 -0
- package/node_modules/moment/src/lib/utils/is-leap-year.js +3 -0
- package/node_modules/moment/src/lib/utils/is-moment-input.js +75 -0
- package/node_modules/moment/src/lib/utils/is-number.js +6 -0
- package/node_modules/moment/src/lib/utils/is-object-empty.js +15 -0
- package/node_modules/moment/src/lib/utils/is-object.js +8 -0
- package/node_modules/moment/src/lib/utils/is-string.js +3 -0
- package/node_modules/moment/src/lib/utils/is-undefined.js +3 -0
- package/node_modules/moment/src/lib/utils/keys.js +20 -0
- package/node_modules/moment/src/lib/utils/map.js +9 -0
- package/node_modules/moment/src/lib/utils/mod.js +3 -0
- package/node_modules/moment/src/lib/utils/some.js +20 -0
- package/node_modules/moment/src/lib/utils/to-int.js +12 -0
- package/node_modules/moment/src/lib/utils/zero-fill.js +10 -0
- package/node_modules/moment/src/locale/af.js +71 -0
- package/node_modules/moment/src/locale/ar-dz.js +156 -0
- package/node_modules/moment/src/locale/ar-kw.js +55 -0
- package/node_modules/moment/src/locale/ar-ly.js +171 -0
- package/node_modules/moment/src/locale/ar-ma.js +56 -0
- package/node_modules/moment/src/locale/ar-ps.js +112 -0
- package/node_modules/moment/src/locale/ar-sa.js +105 -0
- package/node_modules/moment/src/locale/ar-tn.js +55 -0
- package/node_modules/moment/src/locale/ar.js +189 -0
- package/node_modules/moment/src/locale/az.js +102 -0
- package/node_modules/moment/src/locale/be.js +142 -0
- package/node_modules/moment/src/locale/bg.js +87 -0
- package/node_modules/moment/src/locale/bm.js +52 -0
- package/node_modules/moment/src/locale/bn-bd.js +129 -0
- package/node_modules/moment/src/locale/bn.js +119 -0
- package/node_modules/moment/src/locale/bo.js +124 -0
- package/node_modules/moment/src/locale/br.js +168 -0
- package/node_modules/moment/src/locale/bs.js +160 -0
- package/node_modules/moment/src/locale/ca.js +100 -0
- package/node_modules/moment/src/locale/cs.js +181 -0
- package/node_modules/moment/src/locale/cv.js +63 -0
- package/node_modules/moment/src/locale/cy.js +98 -0
- package/node_modules/moment/src/locale/da.js +53 -0
- package/node_modules/moment/src/locale/de-at.js +79 -0
- package/node_modules/moment/src/locale/de-ch.js +78 -0
- package/node_modules/moment/src/locale/de.js +78 -0
- package/node_modules/moment/src/locale/dv.js +90 -0
- package/node_modules/moment/src/locale/el.js +106 -0
- package/node_modules/moment/src/locale/en-au.js +68 -0
- package/node_modules/moment/src/locale/en-ca.js +64 -0
- package/node_modules/moment/src/locale/en-gb.js +68 -0
- package/node_modules/moment/src/locale/en-ie.js +68 -0
- package/node_modules/moment/src/locale/en-il.js +64 -0
- package/node_modules/moment/src/locale/en-in.js +68 -0
- package/node_modules/moment/src/locale/en-nz.js +68 -0
- package/node_modules/moment/src/locale/en-sg.js +68 -0
- package/node_modules/moment/src/locale/eo.js +68 -0
- package/node_modules/moment/src/locale/es-do.js +108 -0
- package/node_modules/moment/src/locale/es-mx.js +110 -0
- package/node_modules/moment/src/locale/es-us.js +110 -0
- package/node_modules/moment/src/locale/es.js +110 -0
- package/node_modules/moment/src/locale/et.js +78 -0
- package/node_modules/moment/src/locale/eu.js +65 -0
- package/node_modules/moment/src/locale/fa.js +113 -0
- package/node_modules/moment/src/locale/fi.js +124 -0
- package/node_modules/moment/src/locale/fil.js +58 -0
- package/node_modules/moment/src/locale/fo.js +57 -0
- package/node_modules/moment/src/locale/fr-ca.js +70 -0
- package/node_modules/moment/src/locale/fr-ch.js +74 -0
- package/node_modules/moment/src/locale/fr.js +108 -0
- package/node_modules/moment/src/locale/fy.js +75 -0
- package/node_modules/moment/src/locale/ga.js +95 -0
- package/node_modules/moment/src/locale/gd.js +95 -0
- package/node_modules/moment/src/locale/gl.js +75 -0
- package/node_modules/moment/src/locale/gom-deva.js +126 -0
- package/node_modules/moment/src/locale/gom-latn.js +124 -0
- package/node_modules/moment/src/locale/gu.js +122 -0
- package/node_modules/moment/src/locale/he.js +94 -0
- package/node_modules/moment/src/locale/hi.js +168 -0
- package/node_modules/moment/src/locale/hr.js +156 -0
- package/node_modules/moment/src/locale/hu.js +118 -0
- package/node_modules/moment/src/locale/hy-am.js +94 -0
- package/node_modules/moment/src/locale/id.js +76 -0
- package/node_modules/moment/src/locale/is.js +140 -0
- package/node_modules/moment/src/locale/it-ch.js +64 -0
- package/node_modules/moment/src/locale/it.js +106 -0
- package/node_modules/moment/src/locale/ja.js +148 -0
- package/node_modules/moment/src/locale/jv.js +76 -0
- package/node_modules/moment/src/locale/ka.js +92 -0
- package/node_modules/moment/src/locale/kk.js +82 -0
- package/node_modules/moment/src/locale/km.js +103 -0
- package/node_modules/moment/src/locale/kn.js +124 -0
- package/node_modules/moment/src/locale/ko.js +75 -0
- package/node_modules/moment/src/locale/ku-kmr.js +121 -0
- package/node_modules/moment/src/locale/ku.js +118 -0
- package/node_modules/moment/src/locale/ky.js +84 -0
- package/node_modules/moment/src/locale/lb.js +137 -0
- package/node_modules/moment/src/locale/lo.js +66 -0
- package/node_modules/moment/src/locale/lt.js +125 -0
- package/node_modules/moment/src/locale/lv.js +94 -0
- package/node_modules/moment/src/locale/me.js +117 -0
- package/node_modules/moment/src/locale/mi.js +60 -0
- package/node_modules/moment/src/locale/mk.js +85 -0
- package/node_modules/moment/src/locale/ml.js +82 -0
- package/node_modules/moment/src/locale/mn.js +100 -0
- package/node_modules/moment/src/locale/mr.js +203 -0
- package/node_modules/moment/src/locale/ms-my.js +76 -0
- package/node_modules/moment/src/locale/ms.js +75 -0
- package/node_modules/moment/src/locale/mt.js +56 -0
- package/node_modules/moment/src/locale/my.js +91 -0
- package/node_modules/moment/src/locale/nb.js +60 -0
- package/node_modules/moment/src/locale/ne.js +121 -0
- package/node_modules/moment/src/locale/nl-be.js +102 -0
- package/node_modules/moment/src/locale/nl.js +104 -0
- package/node_modules/moment/src/locale/nn.js +59 -0
- package/node_modules/moment/src/locale/oc-lnc.js +85 -0
- package/node_modules/moment/src/locale/pa-in.js +122 -0
- package/node_modules/moment/src/locale/pl.js +140 -0
- package/node_modules/moment/src/locale/pt-br.js +58 -0
- package/node_modules/moment/src/locale/pt.js +63 -0
- package/node_modules/moment/src/locale/ro.js +76 -0
- package/node_modules/moment/src/locale/ru.js +213 -0
- package/node_modules/moment/src/locale/sd.js +81 -0
- package/node_modules/moment/src/locale/se.js +57 -0
- package/node_modules/moment/src/locale/si.js +69 -0
- package/node_modules/moment/src/locale/sk.js +145 -0
- package/node_modules/moment/src/locale/sl.js +171 -0
- package/node_modules/moment/src/locale/sq.js +65 -0
- package/node_modules/moment/src/locale/sr-cyrl.js +127 -0
- package/node_modules/moment/src/locale/sr.js +129 -0
- package/node_modules/moment/src/locale/ss.js +84 -0
- package/node_modules/moment/src/locale/sv.js +68 -0
- package/node_modules/moment/src/locale/sw.js +55 -0
- package/node_modules/moment/src/locale/ta.js +131 -0
- package/node_modules/moment/src/locale/te.js +88 -0
- package/node_modules/moment/src/locale/tet.js +68 -0
- package/node_modules/moment/src/locale/tg.js +117 -0
- package/node_modules/moment/src/locale/th.js +65 -0
- package/node_modules/moment/src/locale/tk.js +91 -0
- package/node_modules/moment/src/locale/tl-ph.js +57 -0
- package/node_modules/moment/src/locale/tlh.js +124 -0
- package/node_modules/moment/src/locale/tr.js +106 -0
- package/node_modules/moment/src/locale/tzl.js +89 -0
- package/node_modules/moment/src/locale/tzm-latn.js +54 -0
- package/node_modules/moment/src/locale/tzm.js +54 -0
- package/node_modules/moment/src/locale/ug-cn.js +111 -0
- package/node_modules/moment/src/locale/uk.js +167 -0
- package/node_modules/moment/src/locale/ur.js +82 -0
- package/node_modules/moment/src/locale/uz-latn.js +54 -0
- package/node_modules/moment/src/locale/uz.js +51 -0
- package/node_modules/moment/src/locale/vi.js +80 -0
- package/node_modules/moment/src/locale/x-pseudo.js +73 -0
- package/node_modules/moment/src/locale/yo.js +53 -0
- package/node_modules/moment/src/locale/zh-cn.js +120 -0
- package/node_modules/moment/src/locale/zh-hk.js +101 -0
- package/node_modules/moment/src/locale/zh-mo.js +100 -0
- package/node_modules/moment/src/locale/zh-tw.js +99 -0
- package/node_modules/moment/src/moment.js +93 -0
- package/node_modules/moment/ts3.1-typings/moment.d.ts +785 -0
- package/node_modules/nanoid/LICENSE +20 -0
- package/node_modules/nanoid/README.md +38 -0
- package/node_modules/nanoid/async/index.browser.js +33 -0
- package/node_modules/nanoid/async/index.d.ts +56 -0
- package/node_modules/nanoid/async/index.js +34 -0
- package/node_modules/nanoid/async/index.native.js +25 -0
- package/node_modules/nanoid/bin/nanoid.js +46 -0
- package/node_modules/nanoid/index.browser.js +33 -0
- package/node_modules/nanoid/index.d.ts +91 -0
- package/node_modules/nanoid/index.js +45 -0
- package/node_modules/nanoid/nanoid.js +1 -0
- package/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/node_modules/nanoid/non-secure/index.js +20 -0
- package/node_modules/nanoid/package.json +46 -0
- package/node_modules/nanoid/url-alphabet/index.js +2 -0
- package/node_modules/ts-md5/LICENSE +21 -0
- package/node_modules/ts-md5/README.md +101 -0
- package/node_modules/ts-md5/dist/cjs/index.d.ts +3 -0
- package/node_modules/ts-md5/dist/cjs/index.js +10 -0
- package/node_modules/ts-md5/dist/cjs/index.js.map +1 -0
- package/node_modules/ts-md5/dist/cjs/md5.d.ts +70 -0
- package/node_modules/ts-md5/dist/cjs/md5.js +429 -0
- package/node_modules/ts-md5/dist/cjs/md5.js.map +1 -0
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.d.ts +25 -0
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.js +96 -0
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.js.map +1 -0
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.d.ts +22 -0
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.js +69 -0
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.js.map +1 -0
- package/node_modules/ts-md5/dist/esm/index.d.ts +3 -0
- package/node_modules/ts-md5/dist/esm/index.js +4 -0
- package/node_modules/ts-md5/dist/esm/index.js.map +1 -0
- package/node_modules/ts-md5/dist/esm/md5.d.ts +70 -0
- package/node_modules/ts-md5/dist/esm/md5.js +421 -0
- package/node_modules/ts-md5/dist/esm/md5.js.map +1 -0
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.d.ts +25 -0
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.js +89 -0
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.js.map +1 -0
- package/node_modules/ts-md5/dist/esm/parallel_hasher.d.ts +22 -0
- package/node_modules/ts-md5/dist/esm/parallel_hasher.js +64 -0
- package/node_modules/ts-md5/dist/esm/parallel_hasher.js.map +1 -0
- package/node_modules/ts-md5/dist/md5.js +429 -0
- package/node_modules/ts-md5/dist/md5_worker.js +523 -0
- package/node_modules/ts-md5/package.json +82 -0
- package/node_modules/ts-md5/src/index.ts +4 -0
- package/node_modules/ts-md5/src/md5.ts +473 -0
- package/node_modules/ts-md5/src/md5_file_hasher.ts +110 -0
- package/node_modules/ts-md5/src/parallel_hasher.ts +90 -0
- package/node_modules/ts-md5/src/worker.js +20 -0
- package/package.json +160 -0
- package/scripts/generate-index.js +52 -0
- package/setup.js +2 -0
- package/tfsec.json +4 -0
- package/util/compute.go +106 -0
- package/util/terraform.go +213 -0
- package/util/util.go +100 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { createLocal } from '../create/local';
|
|
2
|
+
import { createUTC } from '../create/utc';
|
|
3
|
+
import { createInvalid } from '../create/valid';
|
|
4
|
+
import { isMoment } from './constructor';
|
|
5
|
+
import { min, max } from './min-max';
|
|
6
|
+
import { now } from './now';
|
|
7
|
+
import momentPrototype from './prototype';
|
|
8
|
+
|
|
9
|
+
function createUnix(input) {
|
|
10
|
+
return createLocal(input * 1000);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function createInZone() {
|
|
14
|
+
return createLocal.apply(null, arguments).parseZone();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export {
|
|
18
|
+
now,
|
|
19
|
+
min,
|
|
20
|
+
max,
|
|
21
|
+
isMoment,
|
|
22
|
+
createUTC,
|
|
23
|
+
createUnix,
|
|
24
|
+
createLocal,
|
|
25
|
+
createInZone,
|
|
26
|
+
createInvalid,
|
|
27
|
+
momentPrototype,
|
|
28
|
+
};
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
import { Moment } from './constructor';
|
|
2
|
+
|
|
3
|
+
var proto = Moment.prototype;
|
|
4
|
+
|
|
5
|
+
import { add, subtract } from './add-subtract';
|
|
6
|
+
import { calendar } from './calendar';
|
|
7
|
+
import { clone } from './clone';
|
|
8
|
+
import {
|
|
9
|
+
isBefore,
|
|
10
|
+
isBetween,
|
|
11
|
+
isSame,
|
|
12
|
+
isAfter,
|
|
13
|
+
isSameOrAfter,
|
|
14
|
+
isSameOrBefore,
|
|
15
|
+
} from './compare';
|
|
16
|
+
import { diff } from './diff';
|
|
17
|
+
import { format, toString, toISOString, inspect } from './format';
|
|
18
|
+
import { from, fromNow } from './from';
|
|
19
|
+
import { to, toNow } from './to';
|
|
20
|
+
import { stringGet, stringSet } from './get-set';
|
|
21
|
+
import { locale, localeData, lang } from './locale';
|
|
22
|
+
import { prototypeMin, prototypeMax } from './min-max';
|
|
23
|
+
import { startOf, endOf } from './start-end-of';
|
|
24
|
+
import { valueOf, toDate, toArray, toObject, toJSON, unix } from './to-type';
|
|
25
|
+
import { isValid, parsingFlags, invalidAt } from './valid';
|
|
26
|
+
import { creationData } from './creation-data';
|
|
27
|
+
|
|
28
|
+
proto.add = add;
|
|
29
|
+
proto.calendar = calendar;
|
|
30
|
+
proto.clone = clone;
|
|
31
|
+
proto.diff = diff;
|
|
32
|
+
proto.endOf = endOf;
|
|
33
|
+
proto.format = format;
|
|
34
|
+
proto.from = from;
|
|
35
|
+
proto.fromNow = fromNow;
|
|
36
|
+
proto.to = to;
|
|
37
|
+
proto.toNow = toNow;
|
|
38
|
+
proto.get = stringGet;
|
|
39
|
+
proto.invalidAt = invalidAt;
|
|
40
|
+
proto.isAfter = isAfter;
|
|
41
|
+
proto.isBefore = isBefore;
|
|
42
|
+
proto.isBetween = isBetween;
|
|
43
|
+
proto.isSame = isSame;
|
|
44
|
+
proto.isSameOrAfter = isSameOrAfter;
|
|
45
|
+
proto.isSameOrBefore = isSameOrBefore;
|
|
46
|
+
proto.isValid = isValid;
|
|
47
|
+
proto.lang = lang;
|
|
48
|
+
proto.locale = locale;
|
|
49
|
+
proto.localeData = localeData;
|
|
50
|
+
proto.max = prototypeMax;
|
|
51
|
+
proto.min = prototypeMin;
|
|
52
|
+
proto.parsingFlags = parsingFlags;
|
|
53
|
+
proto.set = stringSet;
|
|
54
|
+
proto.startOf = startOf;
|
|
55
|
+
proto.subtract = subtract;
|
|
56
|
+
proto.toArray = toArray;
|
|
57
|
+
proto.toObject = toObject;
|
|
58
|
+
proto.toDate = toDate;
|
|
59
|
+
proto.toISOString = toISOString;
|
|
60
|
+
proto.inspect = inspect;
|
|
61
|
+
if (typeof Symbol !== 'undefined' && Symbol.for != null) {
|
|
62
|
+
proto[Symbol.for('nodejs.util.inspect.custom')] = function () {
|
|
63
|
+
return 'Moment<' + this.format() + '>';
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
proto.toJSON = toJSON;
|
|
67
|
+
proto.toString = toString;
|
|
68
|
+
proto.unix = unix;
|
|
69
|
+
proto.valueOf = valueOf;
|
|
70
|
+
proto.creationData = creationData;
|
|
71
|
+
|
|
72
|
+
// Era
|
|
73
|
+
import { getEraName, getEraNarrow, getEraAbbr, getEraYear } from '../units/era';
|
|
74
|
+
proto.eraName = getEraName;
|
|
75
|
+
proto.eraNarrow = getEraNarrow;
|
|
76
|
+
proto.eraAbbr = getEraAbbr;
|
|
77
|
+
proto.eraYear = getEraYear;
|
|
78
|
+
|
|
79
|
+
// Year
|
|
80
|
+
import { getSetYear, getIsLeapYear } from '../units/year';
|
|
81
|
+
proto.year = getSetYear;
|
|
82
|
+
proto.isLeapYear = getIsLeapYear;
|
|
83
|
+
|
|
84
|
+
// Week Year
|
|
85
|
+
import {
|
|
86
|
+
getSetWeekYear,
|
|
87
|
+
getSetISOWeekYear,
|
|
88
|
+
getWeeksInYear,
|
|
89
|
+
getWeeksInWeekYear,
|
|
90
|
+
getISOWeeksInYear,
|
|
91
|
+
getISOWeeksInISOWeekYear,
|
|
92
|
+
} from '../units/week-year';
|
|
93
|
+
proto.weekYear = getSetWeekYear;
|
|
94
|
+
proto.isoWeekYear = getSetISOWeekYear;
|
|
95
|
+
|
|
96
|
+
// Quarter
|
|
97
|
+
import { getSetQuarter } from '../units/quarter';
|
|
98
|
+
proto.quarter = proto.quarters = getSetQuarter;
|
|
99
|
+
|
|
100
|
+
// Month
|
|
101
|
+
import { getSetMonth, getDaysInMonth } from '../units/month';
|
|
102
|
+
proto.month = getSetMonth;
|
|
103
|
+
proto.daysInMonth = getDaysInMonth;
|
|
104
|
+
|
|
105
|
+
// Week
|
|
106
|
+
import { getSetWeek, getSetISOWeek } from '../units/week';
|
|
107
|
+
proto.week = proto.weeks = getSetWeek;
|
|
108
|
+
proto.isoWeek = proto.isoWeeks = getSetISOWeek;
|
|
109
|
+
proto.weeksInYear = getWeeksInYear;
|
|
110
|
+
proto.weeksInWeekYear = getWeeksInWeekYear;
|
|
111
|
+
proto.isoWeeksInYear = getISOWeeksInYear;
|
|
112
|
+
proto.isoWeeksInISOWeekYear = getISOWeeksInISOWeekYear;
|
|
113
|
+
|
|
114
|
+
// Day
|
|
115
|
+
import { getSetDayOfMonth } from '../units/day-of-month';
|
|
116
|
+
import {
|
|
117
|
+
getSetDayOfWeek,
|
|
118
|
+
getSetISODayOfWeek,
|
|
119
|
+
getSetLocaleDayOfWeek,
|
|
120
|
+
} from '../units/day-of-week';
|
|
121
|
+
import { getSetDayOfYear } from '../units/day-of-year';
|
|
122
|
+
proto.date = getSetDayOfMonth;
|
|
123
|
+
proto.day = proto.days = getSetDayOfWeek;
|
|
124
|
+
proto.weekday = getSetLocaleDayOfWeek;
|
|
125
|
+
proto.isoWeekday = getSetISODayOfWeek;
|
|
126
|
+
proto.dayOfYear = getSetDayOfYear;
|
|
127
|
+
|
|
128
|
+
// Hour
|
|
129
|
+
import { getSetHour } from '../units/hour';
|
|
130
|
+
proto.hour = proto.hours = getSetHour;
|
|
131
|
+
|
|
132
|
+
// Minute
|
|
133
|
+
import { getSetMinute } from '../units/minute';
|
|
134
|
+
proto.minute = proto.minutes = getSetMinute;
|
|
135
|
+
|
|
136
|
+
// Second
|
|
137
|
+
import { getSetSecond } from '../units/second';
|
|
138
|
+
proto.second = proto.seconds = getSetSecond;
|
|
139
|
+
|
|
140
|
+
// Millisecond
|
|
141
|
+
import { getSetMillisecond } from '../units/millisecond';
|
|
142
|
+
proto.millisecond = proto.milliseconds = getSetMillisecond;
|
|
143
|
+
|
|
144
|
+
// Offset
|
|
145
|
+
import {
|
|
146
|
+
getSetOffset,
|
|
147
|
+
setOffsetToUTC,
|
|
148
|
+
setOffsetToLocal,
|
|
149
|
+
setOffsetToParsedOffset,
|
|
150
|
+
hasAlignedHourOffset,
|
|
151
|
+
isDaylightSavingTime,
|
|
152
|
+
isDaylightSavingTimeShifted,
|
|
153
|
+
getSetZone,
|
|
154
|
+
isLocal,
|
|
155
|
+
isUtcOffset,
|
|
156
|
+
isUtc,
|
|
157
|
+
} from '../units/offset';
|
|
158
|
+
proto.utcOffset = getSetOffset;
|
|
159
|
+
proto.utc = setOffsetToUTC;
|
|
160
|
+
proto.local = setOffsetToLocal;
|
|
161
|
+
proto.parseZone = setOffsetToParsedOffset;
|
|
162
|
+
proto.hasAlignedHourOffset = hasAlignedHourOffset;
|
|
163
|
+
proto.isDST = isDaylightSavingTime;
|
|
164
|
+
proto.isLocal = isLocal;
|
|
165
|
+
proto.isUtcOffset = isUtcOffset;
|
|
166
|
+
proto.isUtc = isUtc;
|
|
167
|
+
proto.isUTC = isUtc;
|
|
168
|
+
|
|
169
|
+
// Timezone
|
|
170
|
+
import { getZoneAbbr, getZoneName } from '../units/timezone';
|
|
171
|
+
proto.zoneAbbr = getZoneAbbr;
|
|
172
|
+
proto.zoneName = getZoneName;
|
|
173
|
+
|
|
174
|
+
// Deprecations
|
|
175
|
+
import { deprecate } from '../utils/deprecate';
|
|
176
|
+
proto.dates = deprecate(
|
|
177
|
+
'dates accessor is deprecated. Use date instead.',
|
|
178
|
+
getSetDayOfMonth
|
|
179
|
+
);
|
|
180
|
+
proto.months = deprecate(
|
|
181
|
+
'months accessor is deprecated. Use month instead',
|
|
182
|
+
getSetMonth
|
|
183
|
+
);
|
|
184
|
+
proto.years = deprecate(
|
|
185
|
+
'years accessor is deprecated. Use year instead',
|
|
186
|
+
getSetYear
|
|
187
|
+
);
|
|
188
|
+
proto.zone = deprecate(
|
|
189
|
+
'moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/',
|
|
190
|
+
getSetZone
|
|
191
|
+
);
|
|
192
|
+
proto.isDSTShifted = deprecate(
|
|
193
|
+
'isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information',
|
|
194
|
+
isDaylightSavingTimeShifted
|
|
195
|
+
);
|
|
196
|
+
|
|
197
|
+
export default proto;
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import { normalizeUnits } from '../units/aliases';
|
|
2
|
+
import { hooks } from '../utils/hooks';
|
|
3
|
+
|
|
4
|
+
var MS_PER_SECOND = 1000,
|
|
5
|
+
MS_PER_MINUTE = 60 * MS_PER_SECOND,
|
|
6
|
+
MS_PER_HOUR = 60 * MS_PER_MINUTE,
|
|
7
|
+
MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR;
|
|
8
|
+
|
|
9
|
+
// actual modulo - handles negative numbers (for dates before 1970):
|
|
10
|
+
function mod(dividend, divisor) {
|
|
11
|
+
return ((dividend % divisor) + divisor) % divisor;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
function localStartOfDate(y, m, d) {
|
|
15
|
+
// the date constructor remaps years 0-99 to 1900-1999
|
|
16
|
+
if (y < 100 && y >= 0) {
|
|
17
|
+
// preserve leap years using a full 400 year cycle, then reset
|
|
18
|
+
return new Date(y + 400, m, d) - MS_PER_400_YEARS;
|
|
19
|
+
} else {
|
|
20
|
+
return new Date(y, m, d).valueOf();
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function utcStartOfDate(y, m, d) {
|
|
25
|
+
// Date.UTC remaps years 0-99 to 1900-1999
|
|
26
|
+
if (y < 100 && y >= 0) {
|
|
27
|
+
// preserve leap years using a full 400 year cycle, then reset
|
|
28
|
+
return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS;
|
|
29
|
+
} else {
|
|
30
|
+
return Date.UTC(y, m, d);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function startOf(units) {
|
|
35
|
+
var time, startOfDate;
|
|
36
|
+
units = normalizeUnits(units);
|
|
37
|
+
if (units === undefined || units === 'millisecond' || !this.isValid()) {
|
|
38
|
+
return this;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;
|
|
42
|
+
|
|
43
|
+
switch (units) {
|
|
44
|
+
case 'year':
|
|
45
|
+
time = startOfDate(this.year(), 0, 1);
|
|
46
|
+
break;
|
|
47
|
+
case 'quarter':
|
|
48
|
+
time = startOfDate(
|
|
49
|
+
this.year(),
|
|
50
|
+
this.month() - (this.month() % 3),
|
|
51
|
+
1
|
|
52
|
+
);
|
|
53
|
+
break;
|
|
54
|
+
case 'month':
|
|
55
|
+
time = startOfDate(this.year(), this.month(), 1);
|
|
56
|
+
break;
|
|
57
|
+
case 'week':
|
|
58
|
+
time = startOfDate(
|
|
59
|
+
this.year(),
|
|
60
|
+
this.month(),
|
|
61
|
+
this.date() - this.weekday()
|
|
62
|
+
);
|
|
63
|
+
break;
|
|
64
|
+
case 'isoWeek':
|
|
65
|
+
time = startOfDate(
|
|
66
|
+
this.year(),
|
|
67
|
+
this.month(),
|
|
68
|
+
this.date() - (this.isoWeekday() - 1)
|
|
69
|
+
);
|
|
70
|
+
break;
|
|
71
|
+
case 'day':
|
|
72
|
+
case 'date':
|
|
73
|
+
time = startOfDate(this.year(), this.month(), this.date());
|
|
74
|
+
break;
|
|
75
|
+
case 'hour':
|
|
76
|
+
time = this._d.valueOf();
|
|
77
|
+
time -= mod(
|
|
78
|
+
time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE),
|
|
79
|
+
MS_PER_HOUR
|
|
80
|
+
);
|
|
81
|
+
break;
|
|
82
|
+
case 'minute':
|
|
83
|
+
time = this._d.valueOf();
|
|
84
|
+
time -= mod(time, MS_PER_MINUTE);
|
|
85
|
+
break;
|
|
86
|
+
case 'second':
|
|
87
|
+
time = this._d.valueOf();
|
|
88
|
+
time -= mod(time, MS_PER_SECOND);
|
|
89
|
+
break;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
this._d.setTime(time);
|
|
93
|
+
hooks.updateOffset(this, true);
|
|
94
|
+
return this;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export function endOf(units) {
|
|
98
|
+
var time, startOfDate;
|
|
99
|
+
units = normalizeUnits(units);
|
|
100
|
+
if (units === undefined || units === 'millisecond' || !this.isValid()) {
|
|
101
|
+
return this;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;
|
|
105
|
+
|
|
106
|
+
switch (units) {
|
|
107
|
+
case 'year':
|
|
108
|
+
time = startOfDate(this.year() + 1, 0, 1) - 1;
|
|
109
|
+
break;
|
|
110
|
+
case 'quarter':
|
|
111
|
+
time =
|
|
112
|
+
startOfDate(
|
|
113
|
+
this.year(),
|
|
114
|
+
this.month() - (this.month() % 3) + 3,
|
|
115
|
+
1
|
|
116
|
+
) - 1;
|
|
117
|
+
break;
|
|
118
|
+
case 'month':
|
|
119
|
+
time = startOfDate(this.year(), this.month() + 1, 1) - 1;
|
|
120
|
+
break;
|
|
121
|
+
case 'week':
|
|
122
|
+
time =
|
|
123
|
+
startOfDate(
|
|
124
|
+
this.year(),
|
|
125
|
+
this.month(),
|
|
126
|
+
this.date() - this.weekday() + 7
|
|
127
|
+
) - 1;
|
|
128
|
+
break;
|
|
129
|
+
case 'isoWeek':
|
|
130
|
+
time =
|
|
131
|
+
startOfDate(
|
|
132
|
+
this.year(),
|
|
133
|
+
this.month(),
|
|
134
|
+
this.date() - (this.isoWeekday() - 1) + 7
|
|
135
|
+
) - 1;
|
|
136
|
+
break;
|
|
137
|
+
case 'day':
|
|
138
|
+
case 'date':
|
|
139
|
+
time = startOfDate(this.year(), this.month(), this.date() + 1) - 1;
|
|
140
|
+
break;
|
|
141
|
+
case 'hour':
|
|
142
|
+
time = this._d.valueOf();
|
|
143
|
+
time +=
|
|
144
|
+
MS_PER_HOUR -
|
|
145
|
+
mod(
|
|
146
|
+
time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE),
|
|
147
|
+
MS_PER_HOUR
|
|
148
|
+
) -
|
|
149
|
+
1;
|
|
150
|
+
break;
|
|
151
|
+
case 'minute':
|
|
152
|
+
time = this._d.valueOf();
|
|
153
|
+
time += MS_PER_MINUTE - mod(time, MS_PER_MINUTE) - 1;
|
|
154
|
+
break;
|
|
155
|
+
case 'second':
|
|
156
|
+
time = this._d.valueOf();
|
|
157
|
+
time += MS_PER_SECOND - mod(time, MS_PER_SECOND) - 1;
|
|
158
|
+
break;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
this._d.setTime(time);
|
|
162
|
+
hooks.updateOffset(this, true);
|
|
163
|
+
return this;
|
|
164
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export function valueOf() {
|
|
2
|
+
return this._d.valueOf() - (this._offset || 0) * 60000;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export function unix() {
|
|
6
|
+
return Math.floor(this.valueOf() / 1000);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export function toDate() {
|
|
10
|
+
return new Date(this.valueOf());
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function toArray() {
|
|
14
|
+
var m = this;
|
|
15
|
+
return [
|
|
16
|
+
m.year(),
|
|
17
|
+
m.month(),
|
|
18
|
+
m.date(),
|
|
19
|
+
m.hour(),
|
|
20
|
+
m.minute(),
|
|
21
|
+
m.second(),
|
|
22
|
+
m.millisecond(),
|
|
23
|
+
];
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export function toObject() {
|
|
27
|
+
var m = this;
|
|
28
|
+
return {
|
|
29
|
+
years: m.year(),
|
|
30
|
+
months: m.month(),
|
|
31
|
+
date: m.date(),
|
|
32
|
+
hours: m.hours(),
|
|
33
|
+
minutes: m.minutes(),
|
|
34
|
+
seconds: m.seconds(),
|
|
35
|
+
milliseconds: m.milliseconds(),
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export function toJSON() {
|
|
40
|
+
// new Date(NaN).toJSON() === null
|
|
41
|
+
return this.isValid() ? this.toISOString() : null;
|
|
42
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { createDuration } from '../duration/create';
|
|
2
|
+
import { createLocal } from '../create/local';
|
|
3
|
+
import { isMoment } from '../moment/constructor';
|
|
4
|
+
|
|
5
|
+
export function to(time, withoutSuffix) {
|
|
6
|
+
if (
|
|
7
|
+
this.isValid() &&
|
|
8
|
+
((isMoment(time) && time.isValid()) || createLocal(time).isValid())
|
|
9
|
+
) {
|
|
10
|
+
return createDuration({ from: this, to: time })
|
|
11
|
+
.locale(this.locale())
|
|
12
|
+
.humanize(!withoutSuffix);
|
|
13
|
+
} else {
|
|
14
|
+
return this.localeData().invalidDate();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function toNow(withoutSuffix) {
|
|
19
|
+
return this.to(createLocal(), withoutSuffix);
|
|
20
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { isValid as _isValid } from '../create/valid';
|
|
2
|
+
import extend from '../utils/extend';
|
|
3
|
+
import getParsingFlags from '../create/parsing-flags';
|
|
4
|
+
|
|
5
|
+
export function isValid() {
|
|
6
|
+
return _isValid(this);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export function parsingFlags() {
|
|
10
|
+
return extend({}, getParsingFlags(this));
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function invalidAt() {
|
|
14
|
+
return getParsingFlags(this).overflow;
|
|
15
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
var match1 = /\d/, // 0 - 9
|
|
2
|
+
match2 = /\d\d/, // 00 - 99
|
|
3
|
+
match3 = /\d{3}/, // 000 - 999
|
|
4
|
+
match4 = /\d{4}/, // 0000 - 9999
|
|
5
|
+
match6 = /[+-]?\d{6}/, // -999999 - 999999
|
|
6
|
+
match1to2 = /\d\d?/, // 0 - 99
|
|
7
|
+
match3to4 = /\d\d\d\d?/, // 999 - 9999
|
|
8
|
+
match5to6 = /\d\d\d\d\d\d?/, // 99999 - 999999
|
|
9
|
+
match1to3 = /\d{1,3}/, // 0 - 999
|
|
10
|
+
match1to4 = /\d{1,4}/, // 0 - 9999
|
|
11
|
+
match1to6 = /[+-]?\d{1,6}/, // -999999 - 999999
|
|
12
|
+
matchUnsigned = /\d+/, // 0 - inf
|
|
13
|
+
matchSigned = /[+-]?\d+/, // -inf - inf
|
|
14
|
+
matchOffset = /Z|[+-]\d\d:?\d\d/gi, // +00:00 -00:00 +0000 -0000 or Z
|
|
15
|
+
matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi, // +00 -00 +00:00 -00:00 +0000 -0000 or Z
|
|
16
|
+
matchTimestamp = /[+-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123
|
|
17
|
+
// any word (or two) characters or numbers including two/three word month in arabic.
|
|
18
|
+
// includes scottish gaelic two word and hyphenated months
|
|
19
|
+
matchWord =
|
|
20
|
+
/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
|
21
|
+
match1to2NoLeadingZero = /^[1-9]\d?/, // 1-99
|
|
22
|
+
match1to2HasZero = /^([1-9]\d|\d)/, // 0-99
|
|
23
|
+
regexes;
|
|
24
|
+
|
|
25
|
+
export {
|
|
26
|
+
match1,
|
|
27
|
+
match2,
|
|
28
|
+
match3,
|
|
29
|
+
match4,
|
|
30
|
+
match6,
|
|
31
|
+
match1to2,
|
|
32
|
+
match3to4,
|
|
33
|
+
match5to6,
|
|
34
|
+
match1to3,
|
|
35
|
+
match1to4,
|
|
36
|
+
match1to6,
|
|
37
|
+
matchUnsigned,
|
|
38
|
+
matchSigned,
|
|
39
|
+
matchOffset,
|
|
40
|
+
matchShortOffset,
|
|
41
|
+
matchTimestamp,
|
|
42
|
+
matchWord,
|
|
43
|
+
match1to2NoLeadingZero,
|
|
44
|
+
match1to2HasZero,
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
import hasOwnProp from '../utils/has-own-prop';
|
|
48
|
+
import isFunction from '../utils/is-function';
|
|
49
|
+
|
|
50
|
+
regexes = {};
|
|
51
|
+
|
|
52
|
+
export function addRegexToken(token, regex, strictRegex) {
|
|
53
|
+
regexes[token] = isFunction(regex)
|
|
54
|
+
? regex
|
|
55
|
+
: function (isStrict, localeData) {
|
|
56
|
+
return isStrict && strictRegex ? strictRegex : regex;
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function getParseRegexForToken(token, config) {
|
|
61
|
+
if (!hasOwnProp(regexes, token)) {
|
|
62
|
+
return new RegExp(unescapeFormat(token));
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return regexes[token](config._strict, config._locale);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript
|
|
69
|
+
function unescapeFormat(s) {
|
|
70
|
+
return regexEscape(
|
|
71
|
+
s
|
|
72
|
+
.replace('\\', '')
|
|
73
|
+
.replace(
|
|
74
|
+
/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,
|
|
75
|
+
function (matched, p1, p2, p3, p4) {
|
|
76
|
+
return p1 || p2 || p3 || p4;
|
|
77
|
+
}
|
|
78
|
+
)
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export function regexEscape(s) {
|
|
83
|
+
return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
|
|
84
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import hasOwnProp from '../utils/has-own-prop';
|
|
2
|
+
import isNumber from '../utils/is-number';
|
|
3
|
+
import toInt from '../utils/to-int';
|
|
4
|
+
|
|
5
|
+
var tokens = {};
|
|
6
|
+
|
|
7
|
+
export function addParseToken(token, callback) {
|
|
8
|
+
var i,
|
|
9
|
+
func = callback,
|
|
10
|
+
tokenLen;
|
|
11
|
+
if (typeof token === 'string') {
|
|
12
|
+
token = [token];
|
|
13
|
+
}
|
|
14
|
+
if (isNumber(callback)) {
|
|
15
|
+
func = function (input, array) {
|
|
16
|
+
array[callback] = toInt(input);
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
tokenLen = token.length;
|
|
20
|
+
for (i = 0; i < tokenLen; i++) {
|
|
21
|
+
tokens[token[i]] = func;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function addWeekParseToken(token, callback) {
|
|
26
|
+
addParseToken(token, function (input, array, config, token) {
|
|
27
|
+
config._w = config._w || {};
|
|
28
|
+
callback(input, config._w, config, token);
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export function addTimeToArrayFromToken(token, input, config) {
|
|
33
|
+
if (input != null && hasOwnProp(tokens, token)) {
|
|
34
|
+
tokens[token](input, config._a, config, token);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import hasOwnProp from '../utils/has-own-prop';
|
|
2
|
+
|
|
3
|
+
var aliases = {
|
|
4
|
+
D: 'date',
|
|
5
|
+
dates: 'date',
|
|
6
|
+
date: 'date',
|
|
7
|
+
d: 'day',
|
|
8
|
+
days: 'day',
|
|
9
|
+
day: 'day',
|
|
10
|
+
e: 'weekday',
|
|
11
|
+
weekdays: 'weekday',
|
|
12
|
+
weekday: 'weekday',
|
|
13
|
+
E: 'isoWeekday',
|
|
14
|
+
isoweekdays: 'isoWeekday',
|
|
15
|
+
isoweekday: 'isoWeekday',
|
|
16
|
+
DDD: 'dayOfYear',
|
|
17
|
+
dayofyears: 'dayOfYear',
|
|
18
|
+
dayofyear: 'dayOfYear',
|
|
19
|
+
h: 'hour',
|
|
20
|
+
hours: 'hour',
|
|
21
|
+
hour: 'hour',
|
|
22
|
+
ms: 'millisecond',
|
|
23
|
+
milliseconds: 'millisecond',
|
|
24
|
+
millisecond: 'millisecond',
|
|
25
|
+
m: 'minute',
|
|
26
|
+
minutes: 'minute',
|
|
27
|
+
minute: 'minute',
|
|
28
|
+
M: 'month',
|
|
29
|
+
months: 'month',
|
|
30
|
+
month: 'month',
|
|
31
|
+
Q: 'quarter',
|
|
32
|
+
quarters: 'quarter',
|
|
33
|
+
quarter: 'quarter',
|
|
34
|
+
s: 'second',
|
|
35
|
+
seconds: 'second',
|
|
36
|
+
second: 'second',
|
|
37
|
+
gg: 'weekYear',
|
|
38
|
+
weekyears: 'weekYear',
|
|
39
|
+
weekyear: 'weekYear',
|
|
40
|
+
GG: 'isoWeekYear',
|
|
41
|
+
isoweekyears: 'isoWeekYear',
|
|
42
|
+
isoweekyear: 'isoWeekYear',
|
|
43
|
+
w: 'week',
|
|
44
|
+
weeks: 'week',
|
|
45
|
+
week: 'week',
|
|
46
|
+
W: 'isoWeek',
|
|
47
|
+
isoweeks: 'isoWeek',
|
|
48
|
+
isoweek: 'isoWeek',
|
|
49
|
+
y: 'year',
|
|
50
|
+
years: 'year',
|
|
51
|
+
year: 'year',
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export function normalizeUnits(units) {
|
|
55
|
+
return typeof units === 'string'
|
|
56
|
+
? aliases[units] || aliases[units.toLowerCase()]
|
|
57
|
+
: undefined;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function normalizeObjectUnits(inputObject) {
|
|
61
|
+
var normalizedInput = {},
|
|
62
|
+
normalizedProp,
|
|
63
|
+
prop;
|
|
64
|
+
|
|
65
|
+
for (prop in inputObject) {
|
|
66
|
+
if (hasOwnProp(inputObject, prop)) {
|
|
67
|
+
normalizedProp = normalizeUnits(prop);
|
|
68
|
+
if (normalizedProp) {
|
|
69
|
+
normalizedInput[normalizedProp] = inputObject[prop];
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
return normalizedInput;
|
|
75
|
+
}
|