@microsoft/terraform-cdk-constructs 0.0.3-pre.6
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 +17693 -0
- package/API.md +17465 -0
- package/CODE_OF_CONDUCT.md +9 -0
- package/CONTRIBUTING.md +85 -0
- package/LICENSE +21 -0
- package/README.md +58 -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/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 +10 -0
- package/lib/azure-actiongroup/lib/actiongroup.js +46 -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 +172 -0
- package/lib/azure-applicationgateway/lib/gateway.js +123 -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 +60 -0
- package/lib/azure-applicationinsights/lib/appinsights.js +85 -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 +41 -0
- package/lib/azure-containerregistry/lib/registry.js +47 -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 +14 -0
- package/lib/azure-datalake/lib/datalake.js +42 -0
- package/lib/azure-datalake/lib/filesystem.d.ts +19 -0
- package/lib/azure-datalake/lib/filesystem.js +32 -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 +12 -0
- package/lib/azure-datalake/lib/path.js +14 -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 +28 -0
- package/lib/azure-eventhub/lib/authorization.js +54 -0
- package/lib/azure-eventhub/lib/cluster.d.ts +27 -0
- package/lib/azure-eventhub/lib/cluster.js +35 -0
- package/lib/azure-eventhub/lib/consumer.d.ts +26 -0
- package/lib/azure-eventhub/lib/consumer.js +31 -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 +46 -0
- package/lib/azure-eventhub/lib/instance.js +66 -0
- package/lib/azure-eventhub/lib/kusto-connection.d.ts +68 -0
- package/lib/azure-eventhub/lib/kusto-connection.js +35 -0
- package/lib/azure-eventhub/lib/namespace.d.ts +77 -0
- package/lib/azure-eventhub/lib/namespace.js +58 -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 +39 -0
- package/lib/azure-keyvault/lib/certificate.js +94 -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 +36 -0
- package/lib/azure-keyvault/lib/key.js +33 -0
- package/lib/azure-keyvault/lib/policy.d.ts +46 -0
- package/lib/azure-keyvault/lib/policy.js +26 -0
- package/lib/azure-keyvault/lib/secret.d.ts +39 -0
- package/lib/azure-keyvault/lib/secret.js +33 -0
- package/lib/azure-keyvault/lib/vault.d.ts +94 -0
- package/lib/azure-keyvault/lib/vault.js +208 -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 +72 -0
- package/lib/azure-kubernetes/lib/cluster.js +42 -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 +83 -0
- package/lib/azure-kusto/lib/cluster.js +85 -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 +59 -0
- package/lib/azure-kusto/lib/database.js +77 -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 +116 -0
- package/lib/azure-loganalytics/lib/workspace.js +79 -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 +17 -0
- package/lib/azure-metricalert/lib/metric-alert.js +89 -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 +98 -0
- package/lib/azure-networksecuritygroup/lib/securitygroup.js +82 -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 +144 -0
- package/lib/azure-queryrulealert/lib/query-rule-alert.js +174 -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 +38 -0
- package/lib/azure-resourcegroup/lib/resource-group.js +49 -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 +205 -0
- package/lib/azure-storageaccount/lib/account.js +198 -0
- package/lib/azure-storageaccount/lib/container.d.ts +40 -0
- package/lib/azure-storageaccount/lib/container.js +85 -0
- package/lib/azure-storageaccount/lib/fileshare.d.ts +69 -0
- package/lib/azure-storageaccount/lib/fileshare.js +90 -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 +6 -0
- package/lib/azure-storageaccount/lib/queue.js +23 -0
- package/lib/azure-storageaccount/lib/table.d.ts +6 -0
- package/lib/azure-storageaccount/lib/table.js +23 -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 +205 -0
- package/lib/azure-virtualmachine/lib/vm.js +207 -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 +234 -0
- package/lib/azure-virtualmachinescaleset/lib/cluster.js +174 -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 +61 -0
- package/lib/azure-virtualnetwork/lib/network.js +60 -0
- package/lib/azure-virtualnetwork/lib/peering.d.ts +51 -0
- package/lib/azure-virtualnetwork/lib/peering.js +32 -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 +52 -0
- package/lib/core-azure/lib/diagsettings.js +46 -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 +32 -0
- package/lib/core-azure/lib/rbac.js +30 -0
- package/lib/core-azure/lib/resource.d.ts +17 -0
- package/lib/core-azure/lib/resource.js +74 -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 +159 -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,61 @@
|
|
|
1
|
+
import { get, set } from './get-set';
|
|
2
|
+
import { setMonth } from '../units/month';
|
|
3
|
+
import { createDuration } from '../duration/create';
|
|
4
|
+
import { deprecateSimple } from '../utils/deprecate';
|
|
5
|
+
import { hooks } from '../utils/hooks';
|
|
6
|
+
import absRound from '../utils/abs-round';
|
|
7
|
+
|
|
8
|
+
// TODO: remove 'name' arg after deprecation is removed
|
|
9
|
+
function createAdder(direction, name) {
|
|
10
|
+
return function (val, period) {
|
|
11
|
+
var dur, tmp;
|
|
12
|
+
//invert the arguments, but complain about it
|
|
13
|
+
if (period !== null && !isNaN(+period)) {
|
|
14
|
+
deprecateSimple(
|
|
15
|
+
name,
|
|
16
|
+
'moment().' +
|
|
17
|
+
name +
|
|
18
|
+
'(period, number) is deprecated. Please use moment().' +
|
|
19
|
+
name +
|
|
20
|
+
'(number, period). ' +
|
|
21
|
+
'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.'
|
|
22
|
+
);
|
|
23
|
+
tmp = val;
|
|
24
|
+
val = period;
|
|
25
|
+
period = tmp;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
dur = createDuration(val, period);
|
|
29
|
+
addSubtract(this, dur, direction);
|
|
30
|
+
return this;
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function addSubtract(mom, duration, isAdding, updateOffset) {
|
|
35
|
+
var milliseconds = duration._milliseconds,
|
|
36
|
+
days = absRound(duration._days),
|
|
37
|
+
months = absRound(duration._months);
|
|
38
|
+
|
|
39
|
+
if (!mom.isValid()) {
|
|
40
|
+
// No op
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
updateOffset = updateOffset == null ? true : updateOffset;
|
|
45
|
+
|
|
46
|
+
if (months) {
|
|
47
|
+
setMonth(mom, get(mom, 'Month') + months * isAdding);
|
|
48
|
+
}
|
|
49
|
+
if (days) {
|
|
50
|
+
set(mom, 'Date', get(mom, 'Date') + days * isAdding);
|
|
51
|
+
}
|
|
52
|
+
if (milliseconds) {
|
|
53
|
+
mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding);
|
|
54
|
+
}
|
|
55
|
+
if (updateOffset) {
|
|
56
|
+
hooks.updateOffset(mom, days || months);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export var add = createAdder(1, 'add'),
|
|
61
|
+
subtract = createAdder(-1, 'subtract');
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { createLocal } from '../create/local';
|
|
2
|
+
import { cloneWithOffset } from '../units/offset';
|
|
3
|
+
import isFunction from '../utils/is-function';
|
|
4
|
+
import { hooks } from '../utils/hooks';
|
|
5
|
+
import { isMomentInput } from '../utils/is-moment-input';
|
|
6
|
+
import isCalendarSpec from '../utils/is-calendar-spec';
|
|
7
|
+
|
|
8
|
+
export function getCalendarFormat(myMoment, now) {
|
|
9
|
+
var diff = myMoment.diff(now, 'days', true);
|
|
10
|
+
return diff < -6
|
|
11
|
+
? 'sameElse'
|
|
12
|
+
: diff < -1
|
|
13
|
+
? 'lastWeek'
|
|
14
|
+
: diff < 0
|
|
15
|
+
? 'lastDay'
|
|
16
|
+
: diff < 1
|
|
17
|
+
? 'sameDay'
|
|
18
|
+
: diff < 2
|
|
19
|
+
? 'nextDay'
|
|
20
|
+
: diff < 7
|
|
21
|
+
? 'nextWeek'
|
|
22
|
+
: 'sameElse';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function calendar(time, formats) {
|
|
26
|
+
// Support for single parameter, formats only overload to the calendar function
|
|
27
|
+
if (arguments.length === 1) {
|
|
28
|
+
if (!arguments[0]) {
|
|
29
|
+
time = undefined;
|
|
30
|
+
formats = undefined;
|
|
31
|
+
} else if (isMomentInput(arguments[0])) {
|
|
32
|
+
time = arguments[0];
|
|
33
|
+
formats = undefined;
|
|
34
|
+
} else if (isCalendarSpec(arguments[0])) {
|
|
35
|
+
formats = arguments[0];
|
|
36
|
+
time = undefined;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
// We want to compare the start of today, vs this.
|
|
40
|
+
// Getting start-of-today depends on whether we're local/utc/offset or not.
|
|
41
|
+
var now = time || createLocal(),
|
|
42
|
+
sod = cloneWithOffset(now, this).startOf('day'),
|
|
43
|
+
format = hooks.calendarFormat(this, sod) || 'sameElse',
|
|
44
|
+
output =
|
|
45
|
+
formats &&
|
|
46
|
+
(isFunction(formats[format])
|
|
47
|
+
? formats[format].call(this, now)
|
|
48
|
+
: formats[format]);
|
|
49
|
+
|
|
50
|
+
return this.format(
|
|
51
|
+
output || this.localeData().calendar(format, this, createLocal(now))
|
|
52
|
+
);
|
|
53
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { isMoment } from './constructor';
|
|
2
|
+
import { normalizeUnits } from '../units/aliases';
|
|
3
|
+
import { createLocal } from '../create/local';
|
|
4
|
+
|
|
5
|
+
export function isAfter(input, units) {
|
|
6
|
+
var localInput = isMoment(input) ? input : createLocal(input);
|
|
7
|
+
if (!(this.isValid() && localInput.isValid())) {
|
|
8
|
+
return false;
|
|
9
|
+
}
|
|
10
|
+
units = normalizeUnits(units) || 'millisecond';
|
|
11
|
+
if (units === 'millisecond') {
|
|
12
|
+
return this.valueOf() > localInput.valueOf();
|
|
13
|
+
} else {
|
|
14
|
+
return localInput.valueOf() < this.clone().startOf(units).valueOf();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function isBefore(input, units) {
|
|
19
|
+
var localInput = isMoment(input) ? input : createLocal(input);
|
|
20
|
+
if (!(this.isValid() && localInput.isValid())) {
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
units = normalizeUnits(units) || 'millisecond';
|
|
24
|
+
if (units === 'millisecond') {
|
|
25
|
+
return this.valueOf() < localInput.valueOf();
|
|
26
|
+
} else {
|
|
27
|
+
return this.clone().endOf(units).valueOf() < localInput.valueOf();
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export function isBetween(from, to, units, inclusivity) {
|
|
32
|
+
var localFrom = isMoment(from) ? from : createLocal(from),
|
|
33
|
+
localTo = isMoment(to) ? to : createLocal(to);
|
|
34
|
+
if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) {
|
|
35
|
+
return false;
|
|
36
|
+
}
|
|
37
|
+
inclusivity = inclusivity || '()';
|
|
38
|
+
return (
|
|
39
|
+
(inclusivity[0] === '('
|
|
40
|
+
? this.isAfter(localFrom, units)
|
|
41
|
+
: !this.isBefore(localFrom, units)) &&
|
|
42
|
+
(inclusivity[1] === ')'
|
|
43
|
+
? this.isBefore(localTo, units)
|
|
44
|
+
: !this.isAfter(localTo, units))
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export function isSame(input, units) {
|
|
49
|
+
var localInput = isMoment(input) ? input : createLocal(input),
|
|
50
|
+
inputMs;
|
|
51
|
+
if (!(this.isValid() && localInput.isValid())) {
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
units = normalizeUnits(units) || 'millisecond';
|
|
55
|
+
if (units === 'millisecond') {
|
|
56
|
+
return this.valueOf() === localInput.valueOf();
|
|
57
|
+
} else {
|
|
58
|
+
inputMs = localInput.valueOf();
|
|
59
|
+
return (
|
|
60
|
+
this.clone().startOf(units).valueOf() <= inputMs &&
|
|
61
|
+
inputMs <= this.clone().endOf(units).valueOf()
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function isSameOrAfter(input, units) {
|
|
67
|
+
return this.isSame(input, units) || this.isAfter(input, units);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function isSameOrBefore(input, units) {
|
|
71
|
+
return this.isSame(input, units) || this.isBefore(input, units);
|
|
72
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { hooks } from '../utils/hooks';
|
|
2
|
+
import isUndefined from '../utils/is-undefined';
|
|
3
|
+
import getParsingFlags from '../create/parsing-flags';
|
|
4
|
+
|
|
5
|
+
// Plugins that add properties should also add the key here (null value),
|
|
6
|
+
// so we can properly clone ourselves.
|
|
7
|
+
var momentProperties = (hooks.momentProperties = []),
|
|
8
|
+
updateInProgress = false;
|
|
9
|
+
|
|
10
|
+
export function copyConfig(to, from) {
|
|
11
|
+
var i,
|
|
12
|
+
prop,
|
|
13
|
+
val,
|
|
14
|
+
momentPropertiesLen = momentProperties.length;
|
|
15
|
+
|
|
16
|
+
if (!isUndefined(from._isAMomentObject)) {
|
|
17
|
+
to._isAMomentObject = from._isAMomentObject;
|
|
18
|
+
}
|
|
19
|
+
if (!isUndefined(from._i)) {
|
|
20
|
+
to._i = from._i;
|
|
21
|
+
}
|
|
22
|
+
if (!isUndefined(from._f)) {
|
|
23
|
+
to._f = from._f;
|
|
24
|
+
}
|
|
25
|
+
if (!isUndefined(from._l)) {
|
|
26
|
+
to._l = from._l;
|
|
27
|
+
}
|
|
28
|
+
if (!isUndefined(from._strict)) {
|
|
29
|
+
to._strict = from._strict;
|
|
30
|
+
}
|
|
31
|
+
if (!isUndefined(from._tzm)) {
|
|
32
|
+
to._tzm = from._tzm;
|
|
33
|
+
}
|
|
34
|
+
if (!isUndefined(from._isUTC)) {
|
|
35
|
+
to._isUTC = from._isUTC;
|
|
36
|
+
}
|
|
37
|
+
if (!isUndefined(from._offset)) {
|
|
38
|
+
to._offset = from._offset;
|
|
39
|
+
}
|
|
40
|
+
if (!isUndefined(from._pf)) {
|
|
41
|
+
to._pf = getParsingFlags(from);
|
|
42
|
+
}
|
|
43
|
+
if (!isUndefined(from._locale)) {
|
|
44
|
+
to._locale = from._locale;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if (momentPropertiesLen > 0) {
|
|
48
|
+
for (i = 0; i < momentPropertiesLen; i++) {
|
|
49
|
+
prop = momentProperties[i];
|
|
50
|
+
val = from[prop];
|
|
51
|
+
if (!isUndefined(val)) {
|
|
52
|
+
to[prop] = val;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return to;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Moment prototype object
|
|
61
|
+
export function Moment(config) {
|
|
62
|
+
copyConfig(this, config);
|
|
63
|
+
this._d = new Date(config._d != null ? config._d.getTime() : NaN);
|
|
64
|
+
if (!this.isValid()) {
|
|
65
|
+
this._d = new Date(NaN);
|
|
66
|
+
}
|
|
67
|
+
// Prevent infinite loop in case updateOffset creates new moment
|
|
68
|
+
// objects.
|
|
69
|
+
if (updateInProgress === false) {
|
|
70
|
+
updateInProgress = true;
|
|
71
|
+
hooks.updateOffset(this);
|
|
72
|
+
updateInProgress = false;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export function isMoment(obj) {
|
|
77
|
+
return (
|
|
78
|
+
obj instanceof Moment || (obj != null && obj._isAMomentObject != null)
|
|
79
|
+
);
|
|
80
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import absFloor from '../utils/abs-floor';
|
|
2
|
+
import { cloneWithOffset } from '../units/offset';
|
|
3
|
+
import { normalizeUnits } from '../units/aliases';
|
|
4
|
+
|
|
5
|
+
export function diff(input, units, asFloat) {
|
|
6
|
+
var that, zoneDelta, output;
|
|
7
|
+
|
|
8
|
+
if (!this.isValid()) {
|
|
9
|
+
return NaN;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
that = cloneWithOffset(input, this);
|
|
13
|
+
|
|
14
|
+
if (!that.isValid()) {
|
|
15
|
+
return NaN;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4;
|
|
19
|
+
|
|
20
|
+
units = normalizeUnits(units);
|
|
21
|
+
|
|
22
|
+
switch (units) {
|
|
23
|
+
case 'year':
|
|
24
|
+
output = monthDiff(this, that) / 12;
|
|
25
|
+
break;
|
|
26
|
+
case 'month':
|
|
27
|
+
output = monthDiff(this, that);
|
|
28
|
+
break;
|
|
29
|
+
case 'quarter':
|
|
30
|
+
output = monthDiff(this, that) / 3;
|
|
31
|
+
break;
|
|
32
|
+
case 'second':
|
|
33
|
+
output = (this - that) / 1e3;
|
|
34
|
+
break; // 1000
|
|
35
|
+
case 'minute':
|
|
36
|
+
output = (this - that) / 6e4;
|
|
37
|
+
break; // 1000 * 60
|
|
38
|
+
case 'hour':
|
|
39
|
+
output = (this - that) / 36e5;
|
|
40
|
+
break; // 1000 * 60 * 60
|
|
41
|
+
case 'day':
|
|
42
|
+
output = (this - that - zoneDelta) / 864e5;
|
|
43
|
+
break; // 1000 * 60 * 60 * 24, negate dst
|
|
44
|
+
case 'week':
|
|
45
|
+
output = (this - that - zoneDelta) / 6048e5;
|
|
46
|
+
break; // 1000 * 60 * 60 * 24 * 7, negate dst
|
|
47
|
+
default:
|
|
48
|
+
output = this - that;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
return asFloat ? output : absFloor(output);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function monthDiff(a, b) {
|
|
55
|
+
if (a.date() < b.date()) {
|
|
56
|
+
// end-of-month calculations work correct when the start month has more
|
|
57
|
+
// days than the end month.
|
|
58
|
+
return -monthDiff(b, a);
|
|
59
|
+
}
|
|
60
|
+
// difference in months
|
|
61
|
+
var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month()),
|
|
62
|
+
// b is in (anchor - 1 month, anchor + 1 month)
|
|
63
|
+
anchor = a.clone().add(wholeMonthDiff, 'months'),
|
|
64
|
+
anchor2,
|
|
65
|
+
adjust;
|
|
66
|
+
|
|
67
|
+
if (b - anchor < 0) {
|
|
68
|
+
anchor2 = a.clone().add(wholeMonthDiff - 1, 'months');
|
|
69
|
+
// linear across the month
|
|
70
|
+
adjust = (b - anchor) / (anchor - anchor2);
|
|
71
|
+
} else {
|
|
72
|
+
anchor2 = a.clone().add(wholeMonthDiff + 1, 'months');
|
|
73
|
+
// linear across the month
|
|
74
|
+
adjust = (b - anchor) / (anchor2 - anchor);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
//check for negative zero, return zero if negative zero
|
|
78
|
+
return -(wholeMonthDiff + adjust) || 0;
|
|
79
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { formatMoment } from '../format/format';
|
|
2
|
+
import { hooks } from '../utils/hooks';
|
|
3
|
+
import isFunction from '../utils/is-function';
|
|
4
|
+
|
|
5
|
+
hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ';
|
|
6
|
+
hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]';
|
|
7
|
+
|
|
8
|
+
export function toString() {
|
|
9
|
+
return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export function toISOString(keepOffset) {
|
|
13
|
+
if (!this.isValid()) {
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
var utc = keepOffset !== true,
|
|
17
|
+
m = utc ? this.clone().utc() : this;
|
|
18
|
+
if (m.year() < 0 || m.year() > 9999) {
|
|
19
|
+
return formatMoment(
|
|
20
|
+
m,
|
|
21
|
+
utc
|
|
22
|
+
? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'
|
|
23
|
+
: 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ'
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
if (isFunction(Date.prototype.toISOString)) {
|
|
27
|
+
// native implementation is ~50x faster, use it when we can
|
|
28
|
+
if (utc) {
|
|
29
|
+
return this.toDate().toISOString();
|
|
30
|
+
} else {
|
|
31
|
+
return new Date(this.valueOf() + this.utcOffset() * 60 * 1000)
|
|
32
|
+
.toISOString()
|
|
33
|
+
.replace('Z', formatMoment(m, 'Z'));
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
return formatMoment(
|
|
37
|
+
m,
|
|
38
|
+
utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ'
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Return a human readable representation of a moment that can
|
|
44
|
+
* also be evaluated to get a new moment which is the same
|
|
45
|
+
*
|
|
46
|
+
* @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects
|
|
47
|
+
*/
|
|
48
|
+
export function inspect() {
|
|
49
|
+
if (!this.isValid()) {
|
|
50
|
+
return 'moment.invalid(/* ' + this._i + ' */)';
|
|
51
|
+
}
|
|
52
|
+
var func = 'moment',
|
|
53
|
+
zone = '',
|
|
54
|
+
prefix,
|
|
55
|
+
year,
|
|
56
|
+
datetime,
|
|
57
|
+
suffix;
|
|
58
|
+
if (!this.isLocal()) {
|
|
59
|
+
func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone';
|
|
60
|
+
zone = 'Z';
|
|
61
|
+
}
|
|
62
|
+
prefix = '[' + func + '("]';
|
|
63
|
+
year = 0 <= this.year() && this.year() <= 9999 ? 'YYYY' : 'YYYYYY';
|
|
64
|
+
datetime = '-MM-DD[T]HH:mm:ss.SSS';
|
|
65
|
+
suffix = zone + '[")]';
|
|
66
|
+
|
|
67
|
+
return this.format(prefix + year + datetime + suffix);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function format(inputString) {
|
|
71
|
+
if (!inputString) {
|
|
72
|
+
inputString = this.isUtc()
|
|
73
|
+
? hooks.defaultFormatUtc
|
|
74
|
+
: hooks.defaultFormat;
|
|
75
|
+
}
|
|
76
|
+
var output = formatMoment(this, inputString);
|
|
77
|
+
return this.localeData().postformat(output);
|
|
78
|
+
}
|
|
@@ -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 from(time, withoutSuffix) {
|
|
6
|
+
if (
|
|
7
|
+
this.isValid() &&
|
|
8
|
+
((isMoment(time) && time.isValid()) || createLocal(time).isValid())
|
|
9
|
+
) {
|
|
10
|
+
return createDuration({ to: this, from: time })
|
|
11
|
+
.locale(this.locale())
|
|
12
|
+
.humanize(!withoutSuffix);
|
|
13
|
+
} else {
|
|
14
|
+
return this.localeData().invalidDate();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export function fromNow(withoutSuffix) {
|
|
19
|
+
return this.from(createLocal(), withoutSuffix);
|
|
20
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { normalizeUnits, normalizeObjectUnits } from '../units/aliases';
|
|
2
|
+
import { getPrioritizedUnits } from '../units/priorities';
|
|
3
|
+
import { hooks } from '../utils/hooks';
|
|
4
|
+
import isFunction from '../utils/is-function';
|
|
5
|
+
import { isLeapYear } from '../units/year';
|
|
6
|
+
|
|
7
|
+
export function makeGetSet(unit, keepTime) {
|
|
8
|
+
return function (value) {
|
|
9
|
+
if (value != null) {
|
|
10
|
+
set(this, unit, value);
|
|
11
|
+
hooks.updateOffset(this, keepTime);
|
|
12
|
+
return this;
|
|
13
|
+
} else {
|
|
14
|
+
return get(this, unit);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export function get(mom, unit) {
|
|
20
|
+
if (!mom.isValid()) {
|
|
21
|
+
return NaN;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
var d = mom._d,
|
|
25
|
+
isUTC = mom._isUTC;
|
|
26
|
+
|
|
27
|
+
switch (unit) {
|
|
28
|
+
case 'Milliseconds':
|
|
29
|
+
return isUTC ? d.getUTCMilliseconds() : d.getMilliseconds();
|
|
30
|
+
case 'Seconds':
|
|
31
|
+
return isUTC ? d.getUTCSeconds() : d.getSeconds();
|
|
32
|
+
case 'Minutes':
|
|
33
|
+
return isUTC ? d.getUTCMinutes() : d.getMinutes();
|
|
34
|
+
case 'Hours':
|
|
35
|
+
return isUTC ? d.getUTCHours() : d.getHours();
|
|
36
|
+
case 'Date':
|
|
37
|
+
return isUTC ? d.getUTCDate() : d.getDate();
|
|
38
|
+
case 'Day':
|
|
39
|
+
return isUTC ? d.getUTCDay() : d.getDay();
|
|
40
|
+
case 'Month':
|
|
41
|
+
return isUTC ? d.getUTCMonth() : d.getMonth();
|
|
42
|
+
case 'FullYear':
|
|
43
|
+
return isUTC ? d.getUTCFullYear() : d.getFullYear();
|
|
44
|
+
default:
|
|
45
|
+
return NaN; // Just in case
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function set(mom, unit, value) {
|
|
50
|
+
var d, isUTC, year, month, date;
|
|
51
|
+
|
|
52
|
+
if (!mom.isValid() || isNaN(value)) {
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
d = mom._d;
|
|
57
|
+
isUTC = mom._isUTC;
|
|
58
|
+
|
|
59
|
+
switch (unit) {
|
|
60
|
+
case 'Milliseconds':
|
|
61
|
+
return void (isUTC
|
|
62
|
+
? d.setUTCMilliseconds(value)
|
|
63
|
+
: d.setMilliseconds(value));
|
|
64
|
+
case 'Seconds':
|
|
65
|
+
return void (isUTC ? d.setUTCSeconds(value) : d.setSeconds(value));
|
|
66
|
+
case 'Minutes':
|
|
67
|
+
return void (isUTC ? d.setUTCMinutes(value) : d.setMinutes(value));
|
|
68
|
+
case 'Hours':
|
|
69
|
+
return void (isUTC ? d.setUTCHours(value) : d.setHours(value));
|
|
70
|
+
case 'Date':
|
|
71
|
+
return void (isUTC ? d.setUTCDate(value) : d.setDate(value));
|
|
72
|
+
// case 'Day': // Not real
|
|
73
|
+
// return void (isUTC ? d.setUTCDay(value) : d.setDay(value));
|
|
74
|
+
// case 'Month': // Not used because we need to pass two variables
|
|
75
|
+
// return void (isUTC ? d.setUTCMonth(value) : d.setMonth(value));
|
|
76
|
+
case 'FullYear':
|
|
77
|
+
break; // See below ...
|
|
78
|
+
default:
|
|
79
|
+
return; // Just in case
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
year = value;
|
|
83
|
+
month = mom.month();
|
|
84
|
+
date = mom.date();
|
|
85
|
+
date = date === 29 && month === 1 && !isLeapYear(year) ? 28 : date;
|
|
86
|
+
void (isUTC
|
|
87
|
+
? d.setUTCFullYear(year, month, date)
|
|
88
|
+
: d.setFullYear(year, month, date));
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// MOMENTS
|
|
92
|
+
|
|
93
|
+
export function stringGet(units) {
|
|
94
|
+
units = normalizeUnits(units);
|
|
95
|
+
if (isFunction(this[units])) {
|
|
96
|
+
return this[units]();
|
|
97
|
+
}
|
|
98
|
+
return this;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export function stringSet(units, value) {
|
|
102
|
+
if (typeof units === 'object') {
|
|
103
|
+
units = normalizeObjectUnits(units);
|
|
104
|
+
var prioritized = getPrioritizedUnits(units),
|
|
105
|
+
i,
|
|
106
|
+
prioritizedLen = prioritized.length;
|
|
107
|
+
for (i = 0; i < prioritizedLen; i++) {
|
|
108
|
+
this[prioritized[i].unit](units[prioritized[i].unit]);
|
|
109
|
+
}
|
|
110
|
+
} else {
|
|
111
|
+
units = normalizeUnits(units);
|
|
112
|
+
if (isFunction(this[units])) {
|
|
113
|
+
return this[units](value);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
return this;
|
|
117
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { getLocale } from '../locale/locales';
|
|
2
|
+
import { deprecate } from '../utils/deprecate';
|
|
3
|
+
|
|
4
|
+
// If passed a locale key, it will set the locale for this
|
|
5
|
+
// instance. Otherwise, it will return the locale configuration
|
|
6
|
+
// variables for this instance.
|
|
7
|
+
export function locale(key) {
|
|
8
|
+
var newLocaleData;
|
|
9
|
+
|
|
10
|
+
if (key === undefined) {
|
|
11
|
+
return this._locale._abbr;
|
|
12
|
+
} else {
|
|
13
|
+
newLocaleData = getLocale(key);
|
|
14
|
+
if (newLocaleData != null) {
|
|
15
|
+
this._locale = newLocaleData;
|
|
16
|
+
}
|
|
17
|
+
return this;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export var lang = deprecate(
|
|
22
|
+
'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.',
|
|
23
|
+
function (key) {
|
|
24
|
+
if (key === undefined) {
|
|
25
|
+
return this.localeData();
|
|
26
|
+
} else {
|
|
27
|
+
return this.locale(key);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
export function localeData() {
|
|
33
|
+
return this._locale;
|
|
34
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { deprecate } from '../utils/deprecate';
|
|
2
|
+
import isArray from '../utils/is-array';
|
|
3
|
+
import { createLocal } from '../create/local';
|
|
4
|
+
import { createInvalid } from '../create/valid';
|
|
5
|
+
|
|
6
|
+
export var prototypeMin = deprecate(
|
|
7
|
+
'moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/',
|
|
8
|
+
function () {
|
|
9
|
+
var other = createLocal.apply(null, arguments);
|
|
10
|
+
if (this.isValid() && other.isValid()) {
|
|
11
|
+
return other < this ? this : other;
|
|
12
|
+
} else {
|
|
13
|
+
return createInvalid();
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
),
|
|
17
|
+
prototypeMax = deprecate(
|
|
18
|
+
'moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/',
|
|
19
|
+
function () {
|
|
20
|
+
var other = createLocal.apply(null, arguments);
|
|
21
|
+
if (this.isValid() && other.isValid()) {
|
|
22
|
+
return other > this ? this : other;
|
|
23
|
+
} else {
|
|
24
|
+
return createInvalid();
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
// Pick a moment m from moments so that m[fn](other) is true for all
|
|
30
|
+
// other. This relies on the function fn to be transitive.
|
|
31
|
+
//
|
|
32
|
+
// moments should either be an array of moment objects or an array, whose
|
|
33
|
+
// first element is an array of moment objects.
|
|
34
|
+
function pickBy(fn, moments) {
|
|
35
|
+
var res, i;
|
|
36
|
+
if (moments.length === 1 && isArray(moments[0])) {
|
|
37
|
+
moments = moments[0];
|
|
38
|
+
}
|
|
39
|
+
if (!moments.length) {
|
|
40
|
+
return createLocal();
|
|
41
|
+
}
|
|
42
|
+
res = moments[0];
|
|
43
|
+
for (i = 1; i < moments.length; ++i) {
|
|
44
|
+
if (!moments[i].isValid() || moments[i][fn](res)) {
|
|
45
|
+
res = moments[i];
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return res;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// TODO: Use [].sort instead?
|
|
52
|
+
export function min() {
|
|
53
|
+
var args = [].slice.call(arguments, 0);
|
|
54
|
+
|
|
55
|
+
return pickBy('isBefore', args);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function max() {
|
|
59
|
+
var args = [].slice.call(arguments, 0);
|
|
60
|
+
|
|
61
|
+
return pickBy('isAfter', args);
|
|
62
|
+
}
|