chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:13:17 +08:00
commit 58ab8315aa
8961 changed files with 5602567 additions and 0 deletions
@@ -0,0 +1,17 @@
# CountDown
*in [Lib.string.datetime](README.md)*
Prints a formatted string counting down a duration or time to/since a fixed date.
## Input Parameters
| Name (Relevancy & Type) | Description |
|---|---|
| **LaunchTime** (String) | — |
| **Format** (String) | — |
## Outputs
| Name | Type |
|---|---|
| **Output** | System.String |
@@ -0,0 +1,18 @@
# DateTimeToFloat
*in [Lib.string.datetime](README.md)*
Converts a DateTime into different float values like normalized time of day (between 0 ... 1), day of the year, etc.
## Input Parameters
| Name (Relevancy & Type) | Description |
|---|---|
| **Value** (DateTime Required) | — |
| **OutputMapping** (Int32) | — |
| **HourOffset** (Single) | — |
## Outputs
| Name | Type |
|---|---|
| **Output** | System.Single |
@@ -0,0 +1,17 @@
# DateTimeToString
*in [Lib.string.datetime](README.md)*
Uses [NowAsDateTime] output to convert it into a string
## Input Parameters
| Name (Relevancy & Type) | Description |
|---|---|
| **Value** (DateTime Required) | Input for a 'DateTime' parameter<br/><br/>For example by [NowAsDateTime] operator |
| **Format** (String) | — |
## Outputs
| Name | Type |
|---|---|
| **Output** | System.String |
@@ -0,0 +1,11 @@
# NowAsDateTime
*in [Lib.string.datetime](README.md)*
Returns the current system time.
## Outputs
| Name | Type |
|---|---|
| **Output** | System.DateTime |
@@ -0,0 +1,14 @@
# Lib.string.datetime
## Operators
- [**CountDown**](CountDown.md) — Prints a formatted string counting down a duration or time to/since a fixed date.
- [**DateTimeToFloat**](DateTimeToFloat.md) — Converts a DateTime into different float values like normalized time of day (between 0 ... 1), day of the year, etc.
- [**DateTimeToString**](DateTimeToString.md) — Uses [NowAsDateTime] output to convert it into a string
- [**NowAsDateTime**](NowAsDateTime.md) — Returns the current system time.
- [**StringToDateTime**](StringToDateTime.md) — Tries to parse the incoming string as a DateTime.
- [**TimeToString**](TimeToString.md) — Converts [Time] float output and similar to a string
---
*Auto-generated from the operator library.*
@@ -0,0 +1,11 @@
# StringToDateTime
*in [Lib.string.datetime](README.md)*
Tries to parse the incoming string as a DateTime.
## Outputs
| Name | Type |
|---|---|
| **Output** | System.DateTime |
@@ -0,0 +1,11 @@
# TimeToString
*in [Lib.string.datetime](README.md)*
Converts [Time] float output and similar to a string
## Outputs
| Name | Type |
|---|---|
| **Result** | System.String |