diff --git a/snippets/HSBToRGB.md b/snippets/HSBToRGB.md index 628bb7d58..fcd7b1c96 100644 --- a/snippets/HSBToRGB.md +++ b/snippets/HSBToRGB.md @@ -1,5 +1,5 @@ --- -title: HSBToRGB +title: HSB to RGB tags: math,intermediate firstSeen: 2020-09-18T14:25:07+03:00 lastUpdated: 2020-09-18T14:25:07+03:00 diff --git a/snippets/HSLToRGB.md b/snippets/HSLToRGB.md index 8045f4efd..3a8d38be2 100644 --- a/snippets/HSLToRGB.md +++ b/snippets/HSLToRGB.md @@ -1,5 +1,5 @@ --- -title: HSLToRGB +title: HSL to RGB tags: math,intermediate firstSeen: 2020-10-01T23:15:49+03:00 lastUpdated: 2020-10-04T11:24:27+03:00 diff --git a/snippets/gcd.md b/snippets/gcd.md index 457557897..7f10c5faf 100644 --- a/snippets/gcd.md +++ b/snippets/gcd.md @@ -1,5 +1,5 @@ --- -title: gcd +title: Greatest common divisor tags: math,algorithm,recursion,intermediate firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-12-29T12:36:50+02:00 diff --git a/snippets/generateItems.md b/snippets/generateItems.md index b2e52cb98..3fee71627 100644 --- a/snippets/generateItems.md +++ b/snippets/generateItems.md @@ -1,5 +1,5 @@ --- -title: generateItems +title: Generate items tags: array,function,intermediate firstSeen: 2020-10-09T20:41:21+03:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/generateUntil.md b/snippets/generateUntil.md index 39ce4870a..aea207821 100644 --- a/snippets/generateUntil.md +++ b/snippets/generateUntil.md @@ -1,5 +1,5 @@ --- -title: generateUntil +title: Generate until condition is met tags: function,generator,advanced firstSeen: 2022-01-21T05:00:00-04:00 --- diff --git a/snippets/generateWhile.md b/snippets/generateWhile.md index 123183362..0df354201 100644 --- a/snippets/generateWhile.md +++ b/snippets/generateWhile.md @@ -1,5 +1,5 @@ --- -title: generateWhile +title: Generate while condition is met tags: function,generator,advanced firstSeen: 2022-01-21T05:00:00-04:00 --- diff --git a/snippets/generatorToArray.md b/snippets/generatorToArray.md index 3c8c2013b..e25e216b3 100644 --- a/snippets/generatorToArray.md +++ b/snippets/generatorToArray.md @@ -1,5 +1,5 @@ --- -title: generatorToArray +title: Generator to array tags: function,array,generator,beginner firstSeen: 2020-12-31T13:22:18+02:00 lastUpdated: 2020-12-31T13:22:18+02:00 diff --git a/snippets/geometricProgression.md b/snippets/geometricProgression.md index 69fe49b3e..730742d11 100644 --- a/snippets/geometricProgression.md +++ b/snippets/geometricProgression.md @@ -1,5 +1,5 @@ --- -title: geometricProgression +title: Geometric progression tags: math,algorithm,intermediate firstSeen: 2018-01-03T09:36:23+02:00 lastUpdated: 2020-12-28T13:49:24+02:00 diff --git a/snippets/get.md b/snippets/get.md index 1ab333c20..375c59aa0 100644 --- a/snippets/get.md +++ b/snippets/get.md @@ -1,5 +1,5 @@ --- -title: get +title: Get nested object property from path string tags: object,regexp,intermediate firstSeen: 2018-01-18T17:40:42+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getAncestors.md b/snippets/getAncestors.md index c8c90dc90..779b3735c 100644 --- a/snippets/getAncestors.md +++ b/snippets/getAncestors.md @@ -1,5 +1,5 @@ --- -title: getAncestors +title: Get element ancestors tags: browser,beginner firstSeen: 2020-10-15T09:28:34+03:00 lastUpdated: 2021-01-05T22:45:34+02:00 @@ -22,6 +22,6 @@ const getAncestors = el => { ``` ```js -getAncestors(document.querySelector('nav')); +getAncestors(document.querySelector('nav')); // [document, html, body, header, nav] ``` diff --git a/snippets/getBaseURL.md b/snippets/getBaseURL.md index 4de0c86e2..b6e66d1de 100644 --- a/snippets/getBaseURL.md +++ b/snippets/getBaseURL.md @@ -1,5 +1,5 @@ --- -title: getBaseURL +title: Get base URL tags: string,browser,regexp,beginner firstSeen: 2020-05-03T12:20:54+03:00 lastUpdated: 2021-01-03T20:32:13+02:00 diff --git a/snippets/getColonTimeFromDate.md b/snippets/getColonTimeFromDate.md index cf5d951a0..18b5a0fab 100644 --- a/snippets/getColonTimeFromDate.md +++ b/snippets/getColonTimeFromDate.md @@ -1,5 +1,5 @@ --- -title: getColonTimeFromDate +title: Get colon time from date tags: date,string,beginner firstSeen: 2018-01-13T17:14:48+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getDaysDiffBetweenDates.md b/snippets/getDaysDiffBetweenDates.md index b10bfbd8b..e02650e82 100644 --- a/snippets/getDaysDiffBetweenDates.md +++ b/snippets/getDaysDiffBetweenDates.md @@ -1,5 +1,5 @@ --- -title: getDaysDiffBetweenDates +title: Date difference in days tags: date,intermediate firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2021-04-24T12:42:47+03:00 diff --git a/snippets/getElementsBiggerThanViewport.md b/snippets/getElementsBiggerThanViewport.md index 80fea6621..6931304c4 100644 --- a/snippets/getElementsBiggerThanViewport.md +++ b/snippets/getElementsBiggerThanViewport.md @@ -1,5 +1,5 @@ --- -title: getElementsBiggerThanViewport +title: Get elements bigger than viewport tags: browser,intermediate firstSeen: 2020-10-06T17:41:22+03:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/getHoursDiffBetweenDates.md b/snippets/getHoursDiffBetweenDates.md index e9468ac07..153420026 100644 --- a/snippets/getHoursDiffBetweenDates.md +++ b/snippets/getHoursDiffBetweenDates.md @@ -1,5 +1,5 @@ --- -title: getHoursDiffBetweenDates +title: Date difference in hours tags: date,beginner firstSeen: 2021-04-24T12:56:21+03:00 lastUpdated: 2021-04-24T12:56:21+03:00 diff --git a/snippets/getImages.md b/snippets/getImages.md index 266f22461..9aa624c4a 100644 --- a/snippets/getImages.md +++ b/snippets/getImages.md @@ -1,5 +1,5 @@ --- -title: getImages +title: Get all images in element tags: browser,intermediate firstSeen: 2018-10-07T16:24:36+03:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/getMeridiemSuffixOfInteger.md b/snippets/getMeridiemSuffixOfInteger.md index 4afbd71e4..17e9acd18 100644 --- a/snippets/getMeridiemSuffixOfInteger.md +++ b/snippets/getMeridiemSuffixOfInteger.md @@ -1,5 +1,5 @@ --- -title: getMeridiemSuffixOfInteger +title: Get meridiem suffix of integer tags: date,beginner firstSeen: 2018-01-13T17:14:48+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getMinutesDiffBetweenDates.md b/snippets/getMinutesDiffBetweenDates.md index 39f62639c..2a358d091 100644 --- a/snippets/getMinutesDiffBetweenDates.md +++ b/snippets/getMinutesDiffBetweenDates.md @@ -1,5 +1,5 @@ --- -title: getMinutesDiffBetweenDates +title: Date difference in minutes tags: date,beginner firstSeen: 2021-04-24T12:48:49+03:00 lastUpdated: 2021-04-24T12:48:49+03:00 diff --git a/snippets/getMonthsDiffBetweenDates.md b/snippets/getMonthsDiffBetweenDates.md index 8007f11e0..938289bbc 100644 --- a/snippets/getMonthsDiffBetweenDates.md +++ b/snippets/getMonthsDiffBetweenDates.md @@ -1,5 +1,5 @@ --- -title: getMonthsDiffBetweenDates +title: Date difference in months tags: date,intermediate firstSeen: 2020-08-07T15:15:26+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getParentsUntil.md b/snippets/getParentsUntil.md index 5490bd1ad..82a5291db 100644 --- a/snippets/getParentsUntil.md +++ b/snippets/getParentsUntil.md @@ -1,5 +1,5 @@ --- -title: getParentsUntil +title: Get parents until element matches selector tags: browser,intermediate firstSeen: 2021-01-05T22:47:21+02:00 lastUpdated: 2021-01-06T13:04:18+02:00 diff --git a/snippets/getProtocol.md b/snippets/getProtocol.md index 98f1af947..3b2dfb9ab 100644 --- a/snippets/getProtocol.md +++ b/snippets/getProtocol.md @@ -1,5 +1,5 @@ --- -title: getProtocol +title: Current page protocol tags: browser,beginner firstSeen: 2020-10-07T01:40:53+03:00 lastUpdated: 2020-10-20T11:46:23+03:00 diff --git a/snippets/getScrollPosition.md b/snippets/getScrollPosition.md index 6f35f77c0..0b1be4f4d 100644 --- a/snippets/getScrollPosition.md +++ b/snippets/getScrollPosition.md @@ -1,5 +1,5 @@ --- -title: getScrollPosition +title: Scroll position tags: browser,intermediate firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getSecondsDiffBetweenDates.md b/snippets/getSecondsDiffBetweenDates.md index 5f7a147cd..bc7282c3e 100644 --- a/snippets/getSecondsDiffBetweenDates.md +++ b/snippets/getSecondsDiffBetweenDates.md @@ -1,5 +1,5 @@ --- -title: getSecondsDiffBetweenDates +title: Date difference in seconds tags: date,beginner firstSeen: 2021-04-24T12:39:48+03:00 lastUpdated: 2021-04-24T12:39:48+03:00 diff --git a/snippets/getSelectedText.md b/snippets/getSelectedText.md index 78da6d607..6b2a9935d 100644 --- a/snippets/getSelectedText.md +++ b/snippets/getSelectedText.md @@ -1,5 +1,5 @@ --- -title: getSelectedText +title: Get selected text tags: browser,beginner firstSeen: 2020-08-07T15:34:53+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getSiblings.md b/snippets/getSiblings.md index 6d995f644..96ab1b87b 100644 --- a/snippets/getSiblings.md +++ b/snippets/getSiblings.md @@ -1,5 +1,5 @@ --- -title: getSiblings +title: Array of element's siblings tags: browser,intermediate firstSeen: 2020-08-07T15:31:48+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getStyle.md b/snippets/getStyle.md index 9471edba0..bcb0f0f2f 100644 --- a/snippets/getStyle.md +++ b/snippets/getStyle.md @@ -1,5 +1,5 @@ --- -title: getStyle +title: Get style for element tags: browser,css,beginner firstSeen: 2017-12-29T00:08:17+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getTimestamp.md b/snippets/getTimestamp.md index fc90871a0..bade521a7 100644 --- a/snippets/getTimestamp.md +++ b/snippets/getTimestamp.md @@ -1,5 +1,5 @@ --- -title: getTimestamp +title: Unix timestamp from date tags: date,beginner firstSeen: 2020-10-08T17:15:56+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getType.md b/snippets/getType.md index 20781f449..1eaecd031 100644 --- a/snippets/getType.md +++ b/snippets/getType.md @@ -1,5 +1,5 @@ --- -title: getType +title: Type of value tags: type,beginner firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/getURLParameters.md b/snippets/getURLParameters.md index 2a607784d..0320449e4 100644 --- a/snippets/getURLParameters.md +++ b/snippets/getURLParameters.md @@ -1,5 +1,5 @@ --- -title: getURLParameters +title: URL parameters as object tags: browser,string,regexp,intermediate firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/getVerticalOffset.md b/snippets/getVerticalOffset.md index 415937dc7..6981b1dc2 100644 --- a/snippets/getVerticalOffset.md +++ b/snippets/getVerticalOffset.md @@ -1,5 +1,5 @@ --- -title: getVerticalOffset +title: Vertical offset of element tags: browser,beginner firstSeen: 2021-01-05T22:41:09+02:00 lastUpdated: 2021-01-05T22:41:09+02:00 diff --git a/snippets/groupBy.md b/snippets/groupBy.md index ae486cd5f..837f9449b 100644 --- a/snippets/groupBy.md +++ b/snippets/groupBy.md @@ -1,5 +1,5 @@ --- -title: groupBy +title: Group array elements tags: array,object,intermediate firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/hammingDistance.md b/snippets/hammingDistance.md index 81c052228..dec346243 100644 --- a/snippets/hammingDistance.md +++ b/snippets/hammingDistance.md @@ -1,5 +1,5 @@ --- -title: hammingDistance +title: Hamming distance tags: math,algorithm,intermediate firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-12-28T13:49:24+02:00 diff --git a/snippets/hasClass.md b/snippets/hasClass.md index 078a14abd..461e65b0a 100644 --- a/snippets/hasClass.md +++ b/snippets/hasClass.md @@ -1,5 +1,5 @@ --- -title: hasClass +title: Check if HTML element has class tags: browser,css,beginner firstSeen: 2017-12-28T23:46:33+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/hasDuplicates.md b/snippets/hasDuplicates.md index 052c316ef..e9564cd49 100644 --- a/snippets/hasDuplicates.md +++ b/snippets/hasDuplicates.md @@ -1,5 +1,5 @@ --- -title: hasDuplicates +title: Check if array has duplicates tags: array,beginner firstSeen: 2020-10-22T20:23:09+03:00 lastUpdated: 2020-10-22T20:23:09+03:00 diff --git a/snippets/hasFlags.md b/snippets/hasFlags.md index 3b5952a84..f5b6ca895 100644 --- a/snippets/hasFlags.md +++ b/snippets/hasFlags.md @@ -1,5 +1,5 @@ --- -title: hasFlags +title: Check if process arguments contain flags tags: node,intermediate firstSeen: 2018-01-01T18:24:43+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/hasKey.md b/snippets/hasKey.md index 47bf3fd12..639a79bcb 100644 --- a/snippets/hasKey.md +++ b/snippets/hasKey.md @@ -1,5 +1,5 @@ --- -title: hasKey +title: Check if object has key tags: object,intermediate firstSeen: 2019-10-15T15:45:13+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/hasMany.md b/snippets/hasMany.md index 087c80922..1321a1869 100644 --- a/snippets/hasMany.md +++ b/snippets/hasMany.md @@ -1,5 +1,5 @@ --- -title: hasMany +title: Check if array has many matches tags: array,beginner firstSeen: 2021-07-11T05:00:00-04:00 --- diff --git a/snippets/hasOne.md b/snippets/hasOne.md index 1df6d6ace..9eb296567 100644 --- a/snippets/hasOne.md +++ b/snippets/hasOne.md @@ -1,5 +1,5 @@ --- -title: hasOne +title: Check if array has only one match tags: array,beginner firstSeen: 2021-07-04T05:00:00-04:00 --- diff --git a/snippets/hashBrowser.md b/snippets/hashBrowser.md index b173cef21..47ecb44e9 100644 --- a/snippets/hashBrowser.md +++ b/snippets/hashBrowser.md @@ -1,5 +1,5 @@ --- -title: hashBrowser +title: Calculate SHA-256 hash (browser) tags: browser,promise,advanced firstSeen: 2018-01-17T14:09:01+02:00 lastUpdated: 2021-10-13T19:29:39+02:00 diff --git a/snippets/hashNode.md b/snippets/hashNode.md index 369ec5f75..40e21bdc2 100644 --- a/snippets/hashNode.md +++ b/snippets/hashNode.md @@ -1,5 +1,5 @@ --- -title: hashNode +title: Calculate SHA-256 hash (Node.js) tags: node,promise,advanced firstSeen: 2018-01-17T14:09:01+02:00 lastUpdated: 2021-10-13T19:29:39+02:00 diff --git a/snippets/haveSameContents.md b/snippets/haveSameContents.md index d3a4ecbfd..93d89c3f4 100644 --- a/snippets/haveSameContents.md +++ b/snippets/haveSameContents.md @@ -1,5 +1,5 @@ --- -title: haveSameContents +title: Check if arrays have same contents tags: array,intermediate firstSeen: 2020-01-05T21:40:39+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/head.md b/snippets/head.md index 1a246df58..8e4e7acc1 100644 --- a/snippets/head.md +++ b/snippets/head.md @@ -1,5 +1,5 @@ --- -title: head +title: Head of array tags: array,beginner firstSeen: 2017-12-17T16:41:31+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/heapsort.md b/snippets/heapsort.md index a6de95760..8c8ab42a3 100644 --- a/snippets/heapsort.md +++ b/snippets/heapsort.md @@ -1,5 +1,5 @@ --- -title: heapsort +title: Heap sort tags: algorithm,array,recursion,advanced firstSeen: 2020-12-28T22:48:09+02:00 lastUpdated: 2020-12-28T22:48:09+02:00 diff --git a/snippets/hexToRGB.md b/snippets/hexToRGB.md index bbd27066f..4bb820929 100644 --- a/snippets/hexToRGB.md +++ b/snippets/hexToRGB.md @@ -1,5 +1,5 @@ --- -title: hexToRGB +title: Hex to RGB tags: string,math,advanced firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/hide.md b/snippets/hide.md index fc9d6dd9b..54b29de78 100644 --- a/snippets/hide.md +++ b/snippets/hide.md @@ -1,5 +1,5 @@ --- -title: hide +title: Hide elements tags: browser,css,beginner firstSeen: 2017-12-28T23:33:21+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 diff --git a/snippets/httpDelete.md b/snippets/httpDelete.md index d3367d674..e661f5689 100644 --- a/snippets/httpDelete.md +++ b/snippets/httpDelete.md @@ -1,5 +1,5 @@ --- -title: httpDelete +title: HTTP delete tags: browser,intermediate firstSeen: 2020-04-16T11:21:33+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/httpGet.md b/snippets/httpGet.md index dc8d1a7b6..b4059b9b5 100644 --- a/snippets/httpGet.md +++ b/snippets/httpGet.md @@ -1,5 +1,5 @@ --- -title: httpGet +title: HTTP get tags: browser,intermediate firstSeen: 2018-01-08T18:21:52+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/httpPost.md b/snippets/httpPost.md index 28356d0b8..dd8d4024d 100644 --- a/snippets/httpPost.md +++ b/snippets/httpPost.md @@ -1,5 +1,5 @@ --- -title: httpPost +title: HTTP post tags: browser,intermediate firstSeen: 2018-01-08T22:07:02+02:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/httpPut.md b/snippets/httpPut.md index 72a01c560..3f3bd90ba 100644 --- a/snippets/httpPut.md +++ b/snippets/httpPut.md @@ -1,5 +1,5 @@ --- -title: httpPut +title: HTTP put tags: browser,intermediate firstSeen: 2020-04-16T11:21:33+03:00 lastUpdated: 2020-10-19T22:49:51+03:00 diff --git a/snippets/httpsRedirect.md b/snippets/httpsRedirect.md index 9c0a56405..2626c1fea 100644 --- a/snippets/httpsRedirect.md +++ b/snippets/httpsRedirect.md @@ -1,5 +1,5 @@ --- -title: httpsRedirect +title: Redirect to HTTPS tags: browser,intermediate firstSeen: 2017-12-21T08:33:56+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 @@ -20,6 +20,6 @@ const httpsRedirect = () => { ``` ```js -httpsRedirect(); +httpsRedirect(); // If you are on http://mydomain.com, you are redirected to https://mydomain.com ``` diff --git a/snippets/hz.md b/snippets/hz.md index 75e5311af..91be6cb0c 100644 --- a/snippets/hz.md +++ b/snippets/hz.md @@ -1,5 +1,5 @@ --- -title: hz +title: Hertz frequency of function tags: function,intermediate unlisted: true firstSeen: 2018-04-11T16:39:49+03:00 diff --git a/snippets/inRange.md b/snippets/inRange.md index 2abd45353..741f649fa 100644 --- a/snippets/inRange.md +++ b/snippets/inRange.md @@ -1,5 +1,5 @@ --- -title: inRange +title: Number in range tags: math,beginner firstSeen: 2017-12-20T18:33:58+02:00 lastUpdated: 2020-11-01T20:50:57+02:00 diff --git a/snippets/includesAll.md b/snippets/includesAll.md index 148a0c503..77468b659 100644 --- a/snippets/includesAll.md +++ b/snippets/includesAll.md @@ -1,5 +1,5 @@ --- -title: includesAll +title: Check if array includes all values tags: array,beginner firstSeen: 2019-11-04T21:37:16+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/includesAny.md b/snippets/includesAny.md index 61250ee95..cc1c18070 100644 --- a/snippets/includesAny.md +++ b/snippets/includesAny.md @@ -1,5 +1,5 @@ --- -title: includesAny +title: Check if array includes any values tags: array,beginner firstSeen: 2019-11-03T23:49:17+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/indentString.md b/snippets/indentString.md index c8b3929e8..91db44bd6 100644 --- a/snippets/indentString.md +++ b/snippets/indentString.md @@ -1,5 +1,5 @@ --- -title: indentString +title: Indent string tags: string,beginner firstSeen: 2018-09-24T22:14:27+03:00 lastUpdated: 2020-11-01T20:50:57+02:00 diff --git a/snippets/indexBy.md b/snippets/indexBy.md index 507ea52a0..d4e560d25 100644 --- a/snippets/indexBy.md +++ b/snippets/indexBy.md @@ -1,5 +1,5 @@ --- -title: indexBy +title: Index array based on function tags: array,object,intermediate firstSeen: 2021-06-20T05:00:00-04:00 --- diff --git a/snippets/indexOfAll.md b/snippets/indexOfAll.md index 6209978da..97635ea1b 100644 --- a/snippets/indexOfAll.md +++ b/snippets/indexOfAll.md @@ -1,5 +1,5 @@ --- -title: indexOfAll +title: Index of all matches tags: array,intermediate firstSeen: 2018-01-06T12:07:56+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/indexOfSubstrings.md b/snippets/indexOfSubstrings.md index cf83b1f1c..5da721f92 100644 --- a/snippets/indexOfSubstrings.md +++ b/snippets/indexOfSubstrings.md @@ -1,5 +1,5 @@ --- -title: indexOfSubstrings +title: Index of substrings tags: string,algorithm,generator,intermediate firstSeen: 2020-12-31T13:58:51+02:00 lastUpdated: 2020-12-31T13:58:51+02:00 diff --git a/snippets/indexOn.md b/snippets/indexOn.md index 0f244395f..52ec111de 100644 --- a/snippets/indexOn.md +++ b/snippets/indexOn.md @@ -1,5 +1,5 @@ --- -title: indexOn +title: Array to object based on key tags: array,object,intermediate firstSeen: 2021-06-27T05:00:00-04:00 --- diff --git a/snippets/initial.md b/snippets/initial.md index 3c3063ca4..8231164be 100644 --- a/snippets/initial.md +++ b/snippets/initial.md @@ -1,5 +1,5 @@ --- -title: initial +title: Array without last element tags: array,beginner firstSeen: 2017-12-17T16:41:31+02:00 lastUpdated: 2020-11-03T21:46:13+02:00 diff --git a/snippets/initialize2DArray.md b/snippets/initialize2DArray.md index f966f6a3a..0389bc72d 100644 --- a/snippets/initialize2DArray.md +++ b/snippets/initialize2DArray.md @@ -1,5 +1,5 @@ --- -title: initialize2DArray +title: Initialize 2D array tags: array,intermediate firstSeen: 2017-12-19T23:38:18+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/initializeArrayWithRange.md b/snippets/initializeArrayWithRange.md index eef2febf9..1c5af8326 100644 --- a/snippets/initializeArrayWithRange.md +++ b/snippets/initializeArrayWithRange.md @@ -1,5 +1,5 @@ --- -title: initializeArrayWithRange +title: Initialize array with range tags: array,intermediate firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/initializeArrayWithRangeRight.md b/snippets/initializeArrayWithRangeRight.md index df08bf21d..2eb0ad20a 100644 --- a/snippets/initializeArrayWithRangeRight.md +++ b/snippets/initializeArrayWithRangeRight.md @@ -1,5 +1,5 @@ --- -title: initializeArrayWithRangeRight +title: Initialize array with reversed range tags: array,intermediate firstSeen: 2018-01-16T17:09:39+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/initializeArrayWithValues.md b/snippets/initializeArrayWithValues.md index c56ad3d0c..969549257 100644 --- a/snippets/initializeArrayWithValues.md +++ b/snippets/initializeArrayWithValues.md @@ -1,5 +1,5 @@ --- -title: initializeArrayWithValues +title: Initialize array with values tags: array,intermediate firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/initializeNDArray.md b/snippets/initializeNDArray.md index 4e3df9c80..0f7dd4540 100644 --- a/snippets/initializeNDArray.md +++ b/snippets/initializeNDArray.md @@ -1,5 +1,5 @@ --- -title: initializeNDArray +title: Initialize n-dimensional array tags: array,recursion,intermediate firstSeen: 2018-04-14T10:52:39+03:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/injectCSS.md b/snippets/injectCSS.md index d8568c07e..9d04d34b8 100644 --- a/snippets/injectCSS.md +++ b/snippets/injectCSS.md @@ -1,5 +1,5 @@ --- -title: injectCSS +title: Inject CSS tags: browser,css,intermediate firstSeen: 2020-10-15T22:18:00+03:00 lastUpdated: 2020-10-22T20:23:47+03:00 @@ -23,6 +23,6 @@ const injectCSS = css => { ``` ```js -injectCSS('body { background-color: #000 }'); +injectCSS('body { background-color: #000 }'); // '' ``` diff --git a/snippets/insertAfter.md b/snippets/insertAfter.md index f0b95c9bd..9eab03ea9 100644 --- a/snippets/insertAfter.md +++ b/snippets/insertAfter.md @@ -1,5 +1,5 @@ --- -title: insertAfter +title: Insert HTML string after element tags: browser,beginner firstSeen: 2018-06-19T20:57:58+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/insertAt.md b/snippets/insertAt.md index 0cba31946..a70c6dcb2 100644 --- a/snippets/insertAt.md +++ b/snippets/insertAt.md @@ -1,5 +1,5 @@ --- -title: insertAt +title: Insert value at array index tags: array,intermediate firstSeen: 2020-05-22T09:07:35+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/insertBefore.md b/snippets/insertBefore.md index 0ae6528f4..b581087ff 100644 --- a/snippets/insertBefore.md +++ b/snippets/insertBefore.md @@ -1,5 +1,5 @@ --- -title: insertBefore +title: Insert HTML string before element tags: browser,beginner firstSeen: 2018-06-19T20:57:58+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/insertionSort.md b/snippets/insertionSort.md index 2f61cb235..02d53128c 100644 --- a/snippets/insertionSort.md +++ b/snippets/insertionSort.md @@ -1,5 +1,5 @@ --- -title: insertionSort +title: Insertion sort tags: algorithm,array,intermediate firstSeen: 2020-12-28T21:53:53+02:00 lastUpdated: 2020-12-28T21:53:53+02:00 diff --git a/snippets/intersection.md b/snippets/intersection.md index 85838ab30..fafe20532 100644 --- a/snippets/intersection.md +++ b/snippets/intersection.md @@ -1,5 +1,5 @@ --- -title: intersection +title: Array intersection tags: array,intermediate firstSeen: 2017-12-17T16:41:31+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/intersectionBy.md b/snippets/intersectionBy.md index 5163111dc..0dba4a62d 100644 --- a/snippets/intersectionBy.md +++ b/snippets/intersectionBy.md @@ -1,5 +1,5 @@ --- -title: intersectionBy +title: Array intersection based on function tags: array,intermediate firstSeen: 2018-01-24T12:53:18+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/intersectionWith.md b/snippets/intersectionWith.md index a75b3c0d5..fae9f8759 100644 --- a/snippets/intersectionWith.md +++ b/snippets/intersectionWith.md @@ -1,5 +1,5 @@ --- -title: intersectionWith +title: Array intersection based on function tags: array,intermediate firstSeen: 2018-01-24T12:53:18+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/invertKeyValues.md b/snippets/invertKeyValues.md index 53ea17878..a55d872e3 100644 --- a/snippets/invertKeyValues.md +++ b/snippets/invertKeyValues.md @@ -1,11 +1,11 @@ --- -title: invertKeyValues +title: Invert object tags: object,advanced firstSeen: 2018-01-01T17:33:46+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 --- -Inverts the key-value pairs of an object, without mutating it. +Inverts the key-value pairs of an object, without mutating it. - Use `Object.keys()` and `Array.prototype.reduce()` to invert the key-value pairs of an object and apply the function provided (if any). - Omit the second argument, `fn`, to get the inverted keys without applying a function to them. diff --git a/snippets/is.md b/snippets/is.md index f66c86b66..d5f9adde5 100644 --- a/snippets/is.md +++ b/snippets/is.md @@ -1,5 +1,5 @@ --- -title: is +title: Check if value is of type tags: type,array,intermediate firstSeen: 2018-01-17T21:23:46+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isAbsoluteURL.md b/snippets/isAbsoluteURL.md index 522758bd6..889920f8c 100644 --- a/snippets/isAbsoluteURL.md +++ b/snippets/isAbsoluteURL.md @@ -1,5 +1,5 @@ --- -title: isAbsoluteURL +title: Check if absolute URL tags: string,browser,regexp,intermediate firstSeen: 2017-12-31T14:42:45+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isAfterDate.md b/snippets/isAfterDate.md index 1d06c4ab8..d364da101 100644 --- a/snippets/isAfterDate.md +++ b/snippets/isAfterDate.md @@ -1,5 +1,5 @@ --- -title: isAfterDate +title: Check if date is after another date tags: date,beginner firstSeen: 2018-09-29T13:58:38+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isAlpha.md b/snippets/isAlpha.md index 2e769c7ac..d22cbed05 100644 --- a/snippets/isAlpha.md +++ b/snippets/isAlpha.md @@ -1,5 +1,5 @@ --- -title: isAlpha +title: String is alpha tags: string,regexp,beginner firstSeen: 2020-12-31T14:01:42+02:00 lastUpdated: 2020-12-31T14:01:42+02:00 diff --git a/snippets/isAlphaNumeric.md b/snippets/isAlphaNumeric.md index 533b0a3ef..2abfb6a61 100644 --- a/snippets/isAlphaNumeric.md +++ b/snippets/isAlphaNumeric.md @@ -1,5 +1,5 @@ --- -title: isAlphaNumeric +title: String is alphanumeric tags: string,regexp,beginner firstSeen: 2020-09-06T07:59:16+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isAnagram.md b/snippets/isAnagram.md index afe6845c8..2c0dfba03 100644 --- a/snippets/isAnagram.md +++ b/snippets/isAnagram.md @@ -1,5 +1,5 @@ --- -title: isAnagram +title: String is anagram tags: string,regexp,intermediate firstSeen: 2018-02-19T15:47:47+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isArrayLike.md b/snippets/isArrayLike.md index dd9f489b4..1858ecfc1 100644 --- a/snippets/isArrayLike.md +++ b/snippets/isArrayLike.md @@ -1,5 +1,5 @@ --- -title: isArrayLike +title: Value is array-like tags: type,array,intermediate firstSeen: 2017-12-31T14:53:01+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isAsyncFunction.md b/snippets/isAsyncFunction.md index 3555cba77..1f67098ab 100644 --- a/snippets/isAsyncFunction.md +++ b/snippets/isAsyncFunction.md @@ -1,5 +1,5 @@ --- -title: isAsyncFunction +title: Value is async function tags: type,function,intermediate firstSeen: 2020-08-07T15:41:55+03:00 lastUpdated: 2020-10-20T11:21:07+03:00 diff --git a/snippets/isBeforeDate.md b/snippets/isBeforeDate.md index 358f0c753..c14037a83 100644 --- a/snippets/isBeforeDate.md +++ b/snippets/isBeforeDate.md @@ -1,5 +1,5 @@ --- -title: isBeforeDate +title: Check if date is before another date tags: date,beginner firstSeen: 2018-09-29T13:58:38+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isBetweenDates.md b/snippets/isBetweenDates.md index 601334264..0f098a303 100644 --- a/snippets/isBetweenDates.md +++ b/snippets/isBetweenDates.md @@ -1,5 +1,5 @@ --- -title: isBetweenDates +title: Check if date is between two dates tags: date,beginner firstSeen: 2020-10-07T20:31:52+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isBoolean.md b/snippets/isBoolean.md index ae361b395..2084d1cf6 100644 --- a/snippets/isBoolean.md +++ b/snippets/isBoolean.md @@ -1,5 +1,5 @@ --- -title: isBoolean +title: Value is boolean tags: type,beginner firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 diff --git a/snippets/isBrowser.md b/snippets/isBrowser.md index 39c09cc44..2c75d931d 100644 --- a/snippets/isBrowser.md +++ b/snippets/isBrowser.md @@ -1,5 +1,5 @@ --- -title: isBrowser +title: Environment is browser tags: browser,node,intermediate firstSeen: 2018-03-19T04:50:55+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isBrowserTabFocused.md b/snippets/isBrowserTabFocused.md index 05609a515..d2f15cd08 100644 --- a/snippets/isBrowserTabFocused.md +++ b/snippets/isBrowserTabFocused.md @@ -1,5 +1,5 @@ --- -title: isBrowserTabFocused +title: Check if browser tab is focused tags: browser,beginner firstSeen: 2018-04-15T19:18:44+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isContainedIn.md b/snippets/isContainedIn.md index a6b69fd1d..9d2b7507b 100644 --- a/snippets/isContainedIn.md +++ b/snippets/isContainedIn.md @@ -1,5 +1,5 @@ --- -title: isContainedIn +title: Array is contained in other array tags: array,intermediate firstSeen: 2020-01-05T21:40:51+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/isDateValid.md b/snippets/isDateValid.md index 48ba958e0..87c565eb0 100644 --- a/snippets/isDateValid.md +++ b/snippets/isDateValid.md @@ -1,5 +1,5 @@ --- -title: isDateValid +title: Check if date is valid tags: date,intermediate firstSeen: 2020-10-08T16:39:23+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isDeepFrozen.md b/snippets/isDeepFrozen.md index 30d9c616f..b36e861c7 100644 --- a/snippets/isDeepFrozen.md +++ b/snippets/isDeepFrozen.md @@ -1,5 +1,5 @@ --- -title: isDeepFrozen +title: Check if object is deep frozen tags: object,recursion,intermediate firstSeen: 2020-09-04T20:20:11+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isDisjoint.md b/snippets/isDisjoint.md index 609433fe0..f16685b1b 100644 --- a/snippets/isDisjoint.md +++ b/snippets/isDisjoint.md @@ -1,5 +1,5 @@ --- -title: isDisjoint +title: Disjointed iterables tags: array,intermediate firstSeen: 2020-10-11T11:53:01+03:00 lastUpdated: 2020-10-11T11:53:01+03:00 diff --git a/snippets/isDivisible.md b/snippets/isDivisible.md index 835509a37..b8655b388 100644 --- a/snippets/isDivisible.md +++ b/snippets/isDivisible.md @@ -1,5 +1,5 @@ --- -title: isDivisible +title: Nubmer is divisible tags: math,beginner firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 diff --git a/snippets/isDuplexStream.md b/snippets/isDuplexStream.md index f177135dd..f843611ea 100644 --- a/snippets/isDuplexStream.md +++ b/snippets/isDuplexStream.md @@ -1,5 +1,5 @@ --- -title: isDuplexStream +title: Stream is duplex tags: node,type,intermediate firstSeen: 2018-10-03T22:16:10+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isEmpty.md b/snippets/isEmpty.md index 939df0eac..f58b06865 100644 --- a/snippets/isEmpty.md +++ b/snippets/isEmpty.md @@ -1,5 +1,5 @@ --- -title: isEmpty +title: Array is empty tags: type,array,object,string,beginner firstSeen: 2018-01-23T19:25:17+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isEven.md b/snippets/isEven.md index d6bc75fb5..6e85e123a 100644 --- a/snippets/isEven.md +++ b/snippets/isEven.md @@ -1,5 +1,5 @@ --- -title: isEven +title: Number is even tags: math,beginner firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isFunction.md b/snippets/isFunction.md index 58102a2b3..b0f0c7df6 100644 --- a/snippets/isFunction.md +++ b/snippets/isFunction.md @@ -1,5 +1,5 @@ --- -title: isFunction +title: Value is function tags: type,function,beginner firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 diff --git a/snippets/isGeneratorFunction.md b/snippets/isGeneratorFunction.md index a99c77d02..a468f7da5 100644 --- a/snippets/isGeneratorFunction.md +++ b/snippets/isGeneratorFunction.md @@ -1,5 +1,5 @@ --- -title: isGeneratorFunction +title: Value is generator function tags: type,function,intermediate firstSeen: 2020-08-07T15:40:38+03:00 lastUpdated: 2020-10-20T11:21:07+03:00 diff --git a/snippets/isISOString.md b/snippets/isISOString.md index 8383c5b1c..b2dd63d0d 100644 --- a/snippets/isISOString.md +++ b/snippets/isISOString.md @@ -1,5 +1,5 @@ --- -title: isISOString +title: String is ISO formatted date tags: date,intermediate firstSeen: 2020-11-29T12:16:43+02:00 lastUpdated: 2020-11-29T12:16:43+02:00 diff --git a/snippets/isLeapYear.md b/snippets/isLeapYear.md index 099b31244..1eb5a20e5 100644 --- a/snippets/isLeapYear.md +++ b/snippets/isLeapYear.md @@ -1,5 +1,5 @@ --- -title: isLeapYear +title: Check for leap year tags: date,beginner firstSeen: 2020-02-05T14:00:03+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isLocalStorageEnabled.md b/snippets/isLocalStorageEnabled.md index 2cc5d9c8e..d81dd859e 100644 --- a/snippets/isLocalStorageEnabled.md +++ b/snippets/isLocalStorageEnabled.md @@ -1,5 +1,5 @@ --- -title: isLocalStorageEnabled +title: Check if localStorage is enabled tags: browser,intermediate firstSeen: 2020-12-31T13:13:47+02:00 lastUpdated: 2020-12-31T13:13:47+02:00 diff --git a/snippets/isLowerCase.md b/snippets/isLowerCase.md index 2caad2988..79e19366a 100644 --- a/snippets/isLowerCase.md +++ b/snippets/isLowerCase.md @@ -1,5 +1,5 @@ --- -title: isLowerCase +title: String is lowercase tags: string,beginner firstSeen: 2018-01-06T11:16:05+02:00 lastUpdated: 2020-10-20T11:21:07+03:00 diff --git a/snippets/isNegativeZero.md b/snippets/isNegativeZero.md index 997ca5d08..d5297de8e 100644 --- a/snippets/isNegativeZero.md +++ b/snippets/isNegativeZero.md @@ -1,5 +1,5 @@ --- -title: isNegativeZero +title: Number is negative zero tags: math,intermediate firstSeen: 2018-11-12T15:45:36+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isNil.md b/snippets/isNil.md index c9c1d94f1..e74231476 100644 --- a/snippets/isNil.md +++ b/snippets/isNil.md @@ -1,5 +1,5 @@ --- -title: isNil +title: Value is nil tags: type,beginner firstSeen: 2018-01-16T16:50:21+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isNode.md b/snippets/isNode.md index a1122f73c..3c8650d77 100644 --- a/snippets/isNode.md +++ b/snippets/isNode.md @@ -1,5 +1,5 @@ --- -title: isNode +title: Environment is node tags: node,browser,intermediate firstSeen: 2020-10-12T20:01:21+03:00 lastUpdated: 2021-04-02T11:45:13+03:00 diff --git a/snippets/isNull.md b/snippets/isNull.md index fb7ec3a39..8bc46b1b1 100644 --- a/snippets/isNull.md +++ b/snippets/isNull.md @@ -1,5 +1,5 @@ --- -title: isNull +title: Value is null tags: type,beginner firstSeen: 2017-12-31T12:26:19+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isNumber.md b/snippets/isNumber.md index f346e2a59..13c00a645 100644 --- a/snippets/isNumber.md +++ b/snippets/isNumber.md @@ -1,5 +1,5 @@ --- -title: isNumber +title: Value is number tags: type,math,beginner firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 diff --git a/snippets/isObject.md b/snippets/isObject.md index 058048f02..d3fa86937 100644 --- a/snippets/isObject.md +++ b/snippets/isObject.md @@ -1,5 +1,5 @@ --- -title: isObject +title: Value is object tags: type,object,beginner firstSeen: 2018-01-11T12:24:06+02:00 lastUpdated: 2021-01-08T00:23:44+02:00 diff --git a/snippets/isObjectLike.md b/snippets/isObjectLike.md index 88f5ec68b..3cb736a97 100644 --- a/snippets/isObjectLike.md +++ b/snippets/isObjectLike.md @@ -1,5 +1,5 @@ --- -title: isObjectLike +title: Value is object-like tags: type,object,beginner firstSeen: 2018-01-23T19:30:03+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 diff --git a/snippets/isOdd.md b/snippets/isOdd.md index c975f566e..ce18a1ca6 100644 --- a/snippets/isOdd.md +++ b/snippets/isOdd.md @@ -1,5 +1,5 @@ --- -title: isOdd +title: Number is odd tags: math,beginner firstSeen: 2019-09-25T20:35:06+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isPlainObject.md b/snippets/isPlainObject.md index ed1e96af0..9d0493c9c 100644 --- a/snippets/isPlainObject.md +++ b/snippets/isPlainObject.md @@ -1,5 +1,5 @@ --- -title: isPlainObject +title: Value is plain object tags: type,object,intermediate firstSeen: 2018-01-19T13:59:12+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isPowerOfTen.md b/snippets/isPowerOfTen.md index 95b402e0d..baba026d3 100644 --- a/snippets/isPowerOfTen.md +++ b/snippets/isPowerOfTen.md @@ -1,5 +1,5 @@ --- -title: isPowerOfTen +title: Number is power of ten tags: math,beginner firstSeen: 2021-01-06T22:53:58+02:00 lastUpdated: 2021-01-06T22:53:58+02:00 diff --git a/snippets/isPowerOfTwo.md b/snippets/isPowerOfTwo.md index 9ece092ec..8e73a75e7 100644 --- a/snippets/isPowerOfTwo.md +++ b/snippets/isPowerOfTwo.md @@ -1,5 +1,5 @@ --- -title: isPowerOfTwo +title: Number is power of two tags: math,beginner firstSeen: 2019-12-31T13:17:12+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isPrime.md b/snippets/isPrime.md index 4e7f320b8..d0b171a50 100644 --- a/snippets/isPrime.md +++ b/snippets/isPrime.md @@ -1,5 +1,5 @@ --- -title: isPrime +title: Number is prime tags: math,algorithm,beginner firstSeen: 2017-12-19T22:35:56+02:00 lastUpdated: 2021-01-12T19:36:36+02:00 diff --git a/snippets/isPrimitive.md b/snippets/isPrimitive.md index 91deb62ba..28cc75469 100644 --- a/snippets/isPrimitive.md +++ b/snippets/isPrimitive.md @@ -1,5 +1,5 @@ --- -title: isPrimitive +title: Number is primitive tags: type,intermediate firstSeen: 2017-12-31T12:48:13+02:00 lastUpdated: 2020-10-22T20:23:47+03:00 diff --git a/snippets/isPromiseLike.md b/snippets/isPromiseLike.md index c5d3830a6..ad99361e5 100644 --- a/snippets/isPromiseLike.md +++ b/snippets/isPromiseLike.md @@ -1,5 +1,5 @@ --- -title: isPromiseLike +title: Value is promise-like tags: type,function,promise,intermediate firstSeen: 2017-12-31T14:25:43+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isReadableStream.md b/snippets/isReadableStream.md index 9b93e1f76..ed4a1a413 100644 --- a/snippets/isReadableStream.md +++ b/snippets/isReadableStream.md @@ -1,5 +1,5 @@ --- -title: isReadableStream +title: Stream is readable tags: node,type,intermediate firstSeen: 2018-10-03T22:16:10+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isSameDate.md b/snippets/isSameDate.md index eefdf1ac7..bf5b5a6d6 100644 --- a/snippets/isSameDate.md +++ b/snippets/isSameDate.md @@ -1,5 +1,5 @@ --- -title: isSameDate +title: Date is same as another date tags: date,beginner firstSeen: 2018-09-29T13:58:38+03:00 lastUpdated: 2020-11-03T22:11:18+02:00 diff --git a/snippets/isSameOrigin.md b/snippets/isSameOrigin.md index dec73adcd..e0e9b30d6 100644 --- a/snippets/isSameOrigin.md +++ b/snippets/isSameOrigin.md @@ -1,5 +1,5 @@ --- -title: isSameOrigin +title: Same-origin URLs tags: object,beginner firstSeen: 2021-04-22T08:27:41+03:00 lastUpdated: 2021-04-22T08:27:41+03:00 diff --git a/snippets/isSessionStorageEnabled.md b/snippets/isSessionStorageEnabled.md index fc9f52bfe..742d1a550 100644 --- a/snippets/isSessionStorageEnabled.md +++ b/snippets/isSessionStorageEnabled.md @@ -1,5 +1,5 @@ --- -title: isSessionStorageEnabled +title: Check if sessionStorage is enabled tags: browser,intermediate firstSeen: 2020-12-31T13:13:47+02:00 lastUpdated: 2020-12-31T13:13:47+02:00 diff --git a/snippets/isSorted.md b/snippets/isSorted.md index 1acc2adbd..c7e474aa0 100644 --- a/snippets/isSorted.md +++ b/snippets/isSorted.md @@ -1,5 +1,5 @@ --- -title: isSorted +title: Array is sorted tags: array,intermediate firstSeen: 2018-01-01T19:30:14+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isStream.md b/snippets/isStream.md index 38c9e5296..26e5d686c 100644 --- a/snippets/isStream.md +++ b/snippets/isStream.md @@ -1,5 +1,5 @@ --- -title: isStream +title: Value is stream tags: node,type,intermediate firstSeen: 2018-10-01T20:12:19+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isString.md b/snippets/isString.md index 649e262aa..8bfa4dbc5 100644 --- a/snippets/isString.md +++ b/snippets/isString.md @@ -1,5 +1,5 @@ --- -title: isString +title: Value is string tags: type,string,beginner firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isSymbol.md b/snippets/isSymbol.md index c119652ff..e3c1b6f84 100644 --- a/snippets/isSymbol.md +++ b/snippets/isSymbol.md @@ -1,5 +1,5 @@ --- -title: isSymbol +title: Value is symbol tags: type,beginner firstSeen: 2017-12-17T17:55:51+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 diff --git a/snippets/isTravisCI.md b/snippets/isTravisCI.md index 0e227a33d..b9812c033 100644 --- a/snippets/isTravisCI.md +++ b/snippets/isTravisCI.md @@ -1,5 +1,5 @@ --- -title: isTravisCI +title: Environment is Travis CI tags: node,intermediate unlisted: true firstSeen: 2018-01-01T17:28:08+02:00 diff --git a/snippets/isUndefined.md b/snippets/isUndefined.md index 6992f55f5..925af7dce 100644 --- a/snippets/isUndefined.md +++ b/snippets/isUndefined.md @@ -1,5 +1,5 @@ --- -title: isUndefined +title: Value is undefined tags: type,beginner firstSeen: 2018-01-16T16:50:21+02:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isUpperCase.md b/snippets/isUpperCase.md index af7b6ee2a..d0f4de0c6 100644 --- a/snippets/isUpperCase.md +++ b/snippets/isUpperCase.md @@ -1,5 +1,5 @@ --- -title: isUpperCase +title: String is uppercase tags: string,beginner firstSeen: 2018-01-06T11:16:05+02:00 lastUpdated: 2020-09-15T16:28:04+03:00 diff --git a/snippets/isValidJSON.md b/snippets/isValidJSON.md index 2bb3d1882..cf74e5657 100644 --- a/snippets/isValidJSON.md +++ b/snippets/isValidJSON.md @@ -1,5 +1,5 @@ --- -title: isValidJSON +title: String is valis JSON tags: type,intermediate firstSeen: 2017-12-31T14:53:01+02:00 lastUpdated: 2020-10-18T13:49:49+03:00 diff --git a/snippets/isWeekday.md b/snippets/isWeekday.md index 4f051ab91..dbb634540 100644 --- a/snippets/isWeekday.md +++ b/snippets/isWeekday.md @@ -1,5 +1,5 @@ --- -title: isWeekday +title: Date is weekday tags: date,beginner firstSeen: 2019-07-19T12:12:09+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isWeekend.md b/snippets/isWeekend.md index 5795d7ddd..190a87e48 100644 --- a/snippets/isWeekend.md +++ b/snippets/isWeekend.md @@ -1,5 +1,5 @@ --- -title: isWeekend +title: Date is weekend tags: date,beginner firstSeen: 2019-07-19T17:07:02+03:00 lastUpdated: 2020-10-20T23:02:01+03:00 diff --git a/snippets/isWritableStream.md b/snippets/isWritableStream.md index 21b89c24a..300b4dce5 100644 --- a/snippets/isWritableStream.md +++ b/snippets/isWritableStream.md @@ -1,5 +1,5 @@ --- -title: isWritableStream +title: Stream is writable tags: node,type,intermediate firstSeen: 2018-10-03T22:16:10+03:00 lastUpdated: 2020-10-20T23:02:01+03:00