mirror of
https://github.com/gchq/CyberChef
synced 2025-01-12 04:28:53 +00:00
Added in a new custom option for the DateTime format to allow the user to input their own format
This commit is contained in:
parent
c9d9730726
commit
2b81c7927f
1 changed files with 4 additions and 0 deletions
|
@ -15,6 +15,10 @@ export const UNITS = ["Seconds (s)", "Milliseconds (ms)", "Microseconds (μs)",
|
||||||
* DateTime formats.
|
* DateTime formats.
|
||||||
*/
|
*/
|
||||||
export const DATETIME_FORMATS = [
|
export const DATETIME_FORMATS = [
|
||||||
|
{
|
||||||
|
name: "Custom",
|
||||||
|
value: ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "Standard date and time",
|
name: "Standard date and time",
|
||||||
value: "DD/MM/YYYY HH:mm:ss"
|
value: "DD/MM/YYYY HH:mm:ss"
|
||||||
|
|
Loading…
Reference in a new issue