You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sublime-completions/description-date.sublime-settings
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,14 +55,14 @@
55
55
["description-setUTCHours()\tDate", "/*\n\tDescription:\n\tThe setUTCHours() method sets the hours for a specified date according to universal time, and returns the number of milliseconds since 1 January 1970 00:00:00 UTC until the time represented by the updated Date instance.\n\n\tSyntax:\n\tdateObj.setUTCHours(hoursValue[, minutesValue[, secondsValue[, msValue]]])\n*/"],
56
56
["description-setHours()\tDate", "/*\n\tDescription:\n\tThe setHours() method sets the hours for a specified date according to local time, and returns the number of milliseconds since 1 January 1970 00:00:00 UTC until the time represented by the updated Date instance.\n\n\tSyntax:\n\tdateObj.setHours(hoursValue[, minutesValue[, secondsValue[, msValue]]])\n*/"],
57
57
["description-toISOString()\tDate", "/*\n\tDescription:\n\tThe toISOString() method returns a string in ISO format (ISO 8601 Extended Format), which can be described as follows: YYYY-MM-DDTHH:mm:ss.sssZ. The timezone is always UTC as denoted by the suffix \"Z\".\n\n\tSyntax:\n\tdateObj.toISOString()\n*/"],
58
-
["description-Date.UTC()\tDate", "/*\n\tDescription:\n\tThe Date.UTC() method accepts the same parameters as the longest form of the constructor, and returns the number of milliseconds in a Date object since January 1, 1970, 00:00:00, universal time.\n\n\tSyntax:\n\tDate.UTC(year,month[,date[,hrs[,min[,sec[,ms]]]]])\n*/"],
58
+
["description-UTC()\tDate", "/*\n\tDescription:\n\tThe Date.UTC() method accepts the same parameters as the longest form of the constructor, and returns the number of milliseconds in a Date object since January 1, 1970, 00:00:00, universal time.\n\n\tSyntax:\n\tDate.UTC(year,month[,date[,hrs[,min[,sec[,ms]]]]])\n*/"],
59
59
["description-getUTCMonth()\tDate", "/*\n\tDescription:\n\tThe getUTCMonth() method returns the month in the specified date according to universal time, as a zero-based value (where zero indicates the first month of the year).\n\n\tSyntax:\n\tdateObj.getUTCMonth()\n*/"],
60
60
["description-getMonth()\tDate", "/*\n\tDescription:\n\tThe getMonth() method returns the month in the specified date according to local time, as a zero-based value (where zero indicates the first month of the year).\n\n\tSyntax:\n\tdateObj.getMonth()\n*/"],
61
61
["description-setUTCFullYear()\tDate", "/*\n\tDescription:\n\tThe setUTCFullYear() method sets the full year for a specified date according to universal time.\n\n\tSyntax:\n\tdateObj.setUTCFullYear(yearValue[, monthValue[, dayValue]])\n*/"],
62
62
["description-setUTCMinutes()\tDate", "/*\n\tDescription:\n\tThe setUTCMinutes() method sets the minutes for a specified date according to universal time.\n\n\tSyntax:\n\tdateObj.setUTCMinutes(minutesValue[, secondsValue[, msValue]])\n*/"],
63
63
["description-setUTCMilliseconds()\tDate", "/*\n\tDescription:\n\tThe setUTCMilliseconds() method sets the milliseconds for a specified date according to universal time.\n\n\tSyntax:\n\tdateObj.setUTCMilliseconds(millisecondsValue)\n*/"],
64
64
["description-setTime()\tDate", "/*\n\tDescription:\n\tThe setTime() method sets the Date object to the time represented by a number of milliseconds since January 1, 1970, 00:00:00 UTC.\n\n\tSyntax:\n\tdateObj.setTime(timeValue)\n*/"],
65
-
["description-Date.parse()\tDate", "/*\n\tDescription:\n\tThe Date.parse() method parses a string representation of a date, and returns the number of milliseconds since January 1, 1970, 00:00:00 UTC.\n\n\tSyntax:\n\tDate.parse(dateString)\n*/"],
65
+
["description-parse()\tDate", "/*\n\tDescription:\n\tThe Date.parse() method parses a string representation of a date, and returns the number of milliseconds since January 1, 1970, 00:00:00 UTC.\n\n\tSyntax:\n\tDate.parse(dateString)\n*/"],
66
66
["description-getUTCDay()\tDate", "/*\n\tDescription:\n\tThe getUTCDay() method returns the day of the week for the specified date according to universal time, where 0 represents Sunday.\n\n\tSyntax:\n\tdateObj.getUTCDay()\n*/"],
67
67
["description-setFullYear()\tDate", "/*\n\tDescription:\n\tThe setFullYear() method sets the full year for a specified date according to local time.\n\n\tSyntax:\n\tdateObj.setFullYear(yearValue[, monthValue[, dayValue]])\n*/"],
68
68
["description-setMinutes()\tDate", "/*\n\tDescription:\n\tThe setMinutes() method sets the minutes for a specified date according to local time.\n\n\tSyntax:\n\tdateObj.setMinutes(minutesValue[, secondsValue[, msValue]])\n*/"],
@@ -95,4 +95,4 @@
95
95
["description-toJSON()\tDate", "/*\n\tDescription:\n\tThe toJSON() method returns a JSON representation of the Date object.\n\n\tSyntax:\n\tdateObj.toJSON()\n*/"],
96
96
["description-valueOf()\tDate", "/*\n\tDescription:\n\tThe valueOf() method returns the primitive value of a Date object.\n\n\tSyntax:\n\tdateObj.valueOf()\n*/"]
0 commit comments