├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── favicon.png ├── index.html ├── prism.css └── prism.js ├── logo.png ├── package.json ├── scripts ├── build-script.js ├── lint-script.js ├── tag-script.js └── web-script.js ├── snippet-template.md ├── snippets ├── JSONToDate.md ├── JSONToFile.md ├── RGBToHex.md ├── UUIDGenerator.md ├── anagrams.md ├── arrayAverage.md ├── arrayMax.md ├── arrayMin.md ├── arraySum.md ├── bottomVisible.md ├── capitalize.md ├── capitalizeEveryWord.md ├── chainAsync.md ├── chunk.md ├── cleanObj.md ├── coalesce.md ├── coalesceFactory.md ├── collatz.md ├── compact.md ├── compose.md ├── countOccurrences.md ├── currentURL.md ├── curry.md ├── deepFlatten.md ├── difference.md ├── digitize.md ├── distance.md ├── distinctValuesOfArray.md ├── dropElements.md ├── elementIsVisibleInViewport.md ├── escapeRegExp.md ├── everyNth.md ├── extendHex.md ├── factorial.md ├── fibonacci.md ├── filterNonUnique.md ├── flatten.md ├── flattenDepth.md ├── fromCamelCase.md ├── functionName.md ├── gcd.md ├── getDaysDiffBetweenDates.md ├── getScrollPosition.md ├── getType.md ├── getURLParameters.md ├── groupBy.md ├── hammingDistance.md ├── head.md ├── hexToRGB.md ├── initial.md ├── initializeArrayWithRange.md ├── initializeArrayWithValues.md ├── intersection.md ├── isArray.md ├── isBoolean.md ├── isDivisible.md ├── isEven.md ├── isFunction.md ├── isNumber.md ├── isString.md ├── isSymbol.md ├── last.md ├── lcm.md ├── mapObject.md ├── median.md ├── nthElement.md ├── objectFromPairs.md ├── objectToPairs.md ├── palindrome.md ├── percentile.md ├── pick.md ├── pipe.md ├── powerset.md ├── promisify.md ├── pull.md ├── randomIntegerInRange.md ├── randomNumberInRange.md ├── readFileLines.md ├── redirect.md ├── remove.md ├── reverseString.md ├── round.md ├── runPromisesInSeries.md ├── sample.md ├── scrollToTop.md ├── shallowClone.md ├── shuffle.md ├── similarity.md ├── sleep.md ├── sortCharactersInString.md ├── speechSynthesis.md ├── standardDeviation.md ├── symmetricDifference.md ├── tail.md ├── take.md ├── takeRight.md ├── timeTaken.md ├── toCamelCase.md ├── toEnglishDate.md ├── toOrdinalSuffix.md ├── truncateString.md ├── truthCheckCollection.md ├── union.md ├── validateEmail.md ├── validateNumber.md ├── without.md └── zip.md ├── static-parts ├── README-end.md ├── README-start.md ├── index-end.html └── index-start.html ├── tag_database └── yarn.lock /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/README.md -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/docs/prism.css -------------------------------------------------------------------------------- /docs/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/docs/prism.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/scripts/build-script.js -------------------------------------------------------------------------------- /scripts/lint-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/scripts/lint-script.js -------------------------------------------------------------------------------- /scripts/tag-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/scripts/tag-script.js -------------------------------------------------------------------------------- /scripts/web-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/scripts/web-script.js -------------------------------------------------------------------------------- /snippet-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippet-template.md -------------------------------------------------------------------------------- /snippets/JSONToDate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/JSONToDate.md -------------------------------------------------------------------------------- /snippets/JSONToFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/JSONToFile.md -------------------------------------------------------------------------------- /snippets/RGBToHex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/RGBToHex.md -------------------------------------------------------------------------------- /snippets/UUIDGenerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/UUIDGenerator.md -------------------------------------------------------------------------------- /snippets/anagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/anagrams.md -------------------------------------------------------------------------------- /snippets/arrayAverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/arrayAverage.md -------------------------------------------------------------------------------- /snippets/arrayMax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/arrayMax.md -------------------------------------------------------------------------------- /snippets/arrayMin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/arrayMin.md -------------------------------------------------------------------------------- /snippets/arraySum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/arraySum.md -------------------------------------------------------------------------------- /snippets/bottomVisible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/bottomVisible.md -------------------------------------------------------------------------------- /snippets/capitalize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/capitalize.md -------------------------------------------------------------------------------- /snippets/capitalizeEveryWord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/capitalizeEveryWord.md -------------------------------------------------------------------------------- /snippets/chainAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/chainAsync.md -------------------------------------------------------------------------------- /snippets/chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/chunk.md -------------------------------------------------------------------------------- /snippets/cleanObj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/cleanObj.md -------------------------------------------------------------------------------- /snippets/coalesce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/coalesce.md -------------------------------------------------------------------------------- /snippets/coalesceFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/coalesceFactory.md -------------------------------------------------------------------------------- /snippets/collatz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/collatz.md -------------------------------------------------------------------------------- /snippets/compact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/compact.md -------------------------------------------------------------------------------- /snippets/compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/compose.md -------------------------------------------------------------------------------- /snippets/countOccurrences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/countOccurrences.md -------------------------------------------------------------------------------- /snippets/currentURL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/currentURL.md -------------------------------------------------------------------------------- /snippets/curry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/curry.md -------------------------------------------------------------------------------- /snippets/deepFlatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/deepFlatten.md -------------------------------------------------------------------------------- /snippets/difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/difference.md -------------------------------------------------------------------------------- /snippets/digitize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/digitize.md -------------------------------------------------------------------------------- /snippets/distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/distance.md -------------------------------------------------------------------------------- /snippets/distinctValuesOfArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/distinctValuesOfArray.md -------------------------------------------------------------------------------- /snippets/dropElements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/dropElements.md -------------------------------------------------------------------------------- /snippets/elementIsVisibleInViewport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/elementIsVisibleInViewport.md -------------------------------------------------------------------------------- /snippets/escapeRegExp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/escapeRegExp.md -------------------------------------------------------------------------------- /snippets/everyNth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/everyNth.md -------------------------------------------------------------------------------- /snippets/extendHex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/extendHex.md -------------------------------------------------------------------------------- /snippets/factorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/factorial.md -------------------------------------------------------------------------------- /snippets/fibonacci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/fibonacci.md -------------------------------------------------------------------------------- /snippets/filterNonUnique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/filterNonUnique.md -------------------------------------------------------------------------------- /snippets/flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/flatten.md -------------------------------------------------------------------------------- /snippets/flattenDepth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/flattenDepth.md -------------------------------------------------------------------------------- /snippets/fromCamelCase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/fromCamelCase.md -------------------------------------------------------------------------------- /snippets/functionName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/functionName.md -------------------------------------------------------------------------------- /snippets/gcd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/gcd.md -------------------------------------------------------------------------------- /snippets/getDaysDiffBetweenDates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/getDaysDiffBetweenDates.md -------------------------------------------------------------------------------- /snippets/getScrollPosition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/getScrollPosition.md -------------------------------------------------------------------------------- /snippets/getType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/getType.md -------------------------------------------------------------------------------- /snippets/getURLParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/getURLParameters.md -------------------------------------------------------------------------------- /snippets/groupBy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/groupBy.md -------------------------------------------------------------------------------- /snippets/hammingDistance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/hammingDistance.md -------------------------------------------------------------------------------- /snippets/head.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/head.md -------------------------------------------------------------------------------- /snippets/hexToRGB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/hexToRGB.md -------------------------------------------------------------------------------- /snippets/initial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/initial.md -------------------------------------------------------------------------------- /snippets/initializeArrayWithRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/initializeArrayWithRange.md -------------------------------------------------------------------------------- /snippets/initializeArrayWithValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/initializeArrayWithValues.md -------------------------------------------------------------------------------- /snippets/intersection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/intersection.md -------------------------------------------------------------------------------- /snippets/isArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/isArray.md -------------------------------------------------------------------------------- /snippets/isBoolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/isBoolean.md -------------------------------------------------------------------------------- /snippets/isDivisible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/isDivisible.md -------------------------------------------------------------------------------- /snippets/isEven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/isEven.md -------------------------------------------------------------------------------- /snippets/isFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/isFunction.md -------------------------------------------------------------------------------- /snippets/isNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/isNumber.md -------------------------------------------------------------------------------- /snippets/isString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/isString.md -------------------------------------------------------------------------------- /snippets/isSymbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/isSymbol.md -------------------------------------------------------------------------------- /snippets/last.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/last.md -------------------------------------------------------------------------------- /snippets/lcm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/lcm.md -------------------------------------------------------------------------------- /snippets/mapObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/mapObject.md -------------------------------------------------------------------------------- /snippets/median.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/median.md -------------------------------------------------------------------------------- /snippets/nthElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/nthElement.md -------------------------------------------------------------------------------- /snippets/objectFromPairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/objectFromPairs.md -------------------------------------------------------------------------------- /snippets/objectToPairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/objectToPairs.md -------------------------------------------------------------------------------- /snippets/palindrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/palindrome.md -------------------------------------------------------------------------------- /snippets/percentile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/percentile.md -------------------------------------------------------------------------------- /snippets/pick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/pick.md -------------------------------------------------------------------------------- /snippets/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/pipe.md -------------------------------------------------------------------------------- /snippets/powerset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/powerset.md -------------------------------------------------------------------------------- /snippets/promisify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/promisify.md -------------------------------------------------------------------------------- /snippets/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/pull.md -------------------------------------------------------------------------------- /snippets/randomIntegerInRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/randomIntegerInRange.md -------------------------------------------------------------------------------- /snippets/randomNumberInRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/randomNumberInRange.md -------------------------------------------------------------------------------- /snippets/readFileLines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/readFileLines.md -------------------------------------------------------------------------------- /snippets/redirect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/redirect.md -------------------------------------------------------------------------------- /snippets/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/remove.md -------------------------------------------------------------------------------- /snippets/reverseString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/reverseString.md -------------------------------------------------------------------------------- /snippets/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/round.md -------------------------------------------------------------------------------- /snippets/runPromisesInSeries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/runPromisesInSeries.md -------------------------------------------------------------------------------- /snippets/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/sample.md -------------------------------------------------------------------------------- /snippets/scrollToTop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/scrollToTop.md -------------------------------------------------------------------------------- /snippets/shallowClone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/shallowClone.md -------------------------------------------------------------------------------- /snippets/shuffle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/shuffle.md -------------------------------------------------------------------------------- /snippets/similarity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/similarity.md -------------------------------------------------------------------------------- /snippets/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/sleep.md -------------------------------------------------------------------------------- /snippets/sortCharactersInString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/sortCharactersInString.md -------------------------------------------------------------------------------- /snippets/speechSynthesis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/speechSynthesis.md -------------------------------------------------------------------------------- /snippets/standardDeviation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/standardDeviation.md -------------------------------------------------------------------------------- /snippets/symmetricDifference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/symmetricDifference.md -------------------------------------------------------------------------------- /snippets/tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/tail.md -------------------------------------------------------------------------------- /snippets/take.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/take.md -------------------------------------------------------------------------------- /snippets/takeRight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/takeRight.md -------------------------------------------------------------------------------- /snippets/timeTaken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/timeTaken.md -------------------------------------------------------------------------------- /snippets/toCamelCase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/toCamelCase.md -------------------------------------------------------------------------------- /snippets/toEnglishDate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/toEnglishDate.md -------------------------------------------------------------------------------- /snippets/toOrdinalSuffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/toOrdinalSuffix.md -------------------------------------------------------------------------------- /snippets/truncateString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/truncateString.md -------------------------------------------------------------------------------- /snippets/truthCheckCollection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/truthCheckCollection.md -------------------------------------------------------------------------------- /snippets/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/union.md -------------------------------------------------------------------------------- /snippets/validateEmail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/validateEmail.md -------------------------------------------------------------------------------- /snippets/validateNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/validateNumber.md -------------------------------------------------------------------------------- /snippets/without.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/without.md -------------------------------------------------------------------------------- /snippets/zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/snippets/zip.md -------------------------------------------------------------------------------- /static-parts/README-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/static-parts/README-end.md -------------------------------------------------------------------------------- /static-parts/README-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/static-parts/README-start.md -------------------------------------------------------------------------------- /static-parts/index-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/static-parts/index-end.html -------------------------------------------------------------------------------- /static-parts/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/static-parts/index-start.html -------------------------------------------------------------------------------- /tag_database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/tag_database -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujian/30-seconds-of-code/HEAD/yarn.lock --------------------------------------------------------------------------------