30secondsofcode
f1ffb4935d
Travis build: 661
2018-10-19 07:17:15 +00:00
30secondsofcode
388c6570e4
Travis build: 659
2018-10-19 06:06:32 +00:00
Angelos Chalaris
4270fa9a3d
Linted everything, removed semistandard
2018-10-18 23:38:01 +03:00
Siarhei
bff7a3b0bb
Simplify differenceBy
2018-10-17 12:01:48 +04:00
Angelos Chalaris
665d30f7e5
Merge pull request #830 from liuhanqu/master
...
Another primitive assert function
2018-10-16 11:35:20 +03:00
Angelos Chalaris
321d4fb651
Update isPrimitive.md
2018-10-16 11:34:45 +03:00
Siarhei
782192943a
Simplify countBy
2018-10-15 12:18:24 +04:00
Angelos Chalaris
ed30a5e03e
Update palindrome.md
2018-10-15 08:07:36 +03:00
Angelos Chalaris
d5b75cfc0f
Update palindrome.md
2018-10-15 08:06:52 +03:00
mphan6
8dcaaf4c63
Correct palindrome.md description
...
Corrected the second toLowerCase() function typo and tried to make the
description more clear.
2018-10-14 17:47:48 -04:00
laohan
c24d312673
Another primitive assert function
2018-10-12 15:12:43 +08:00
Benjamin Russel
5d0e81a1cc
Updates typo in sample snippet from of to off
2018-10-11 10:57:51 +01:00
Siarhei
8d558bf6fa
Simplify unionBy
2018-10-10 16:47:58 +04:00
Angelos Chalaris
65e0acfc93
Merge pull request #815 from henrycjchen/master
...
fix time problem
2018-10-09 14:14:33 +03:00
Henry
903b4cf31b
more semantic version
2018-10-09 16:54:03 +08:00
Sanket Mishra
e3ff04a19c
Fixed typo
...
Changed "demiliter" to "delimiter" in line 5
2018-10-09 13:31:18 +05:30
Henry
78c6f6d395
fix time problem
...
setTimeout would go wrong in some browser when the second argument is less than zero
2018-10-08 21:48:19 +08:00
30secondsofcode
215db8de59
Travis build: 604
2018-10-07 13:26:08 +00:00
Gravity_Salad
946a30ab4c
[FEATURE] Add getImages snippet ( #806 )
...
<!-- Use a descriptive title, prefix it with [FIX], [FEATURE] or [ENHANCEMENT] if applicable (use only one) -->
## Description
<!-- Write a detailed description of your changes/additions here -->
Adding a snippet to fetch all images from within a desired element.
<!-- If your PR resolves an issue, please state "Resolves #(issue number)" to help maintainers process it faster -->
<!-- If you think your PR will cause breaking changes, require changes in the documentation etc, please be so kind as to explain what, where and how -->
## PR Type
- [x] Snippets, Tests & Tags (new snippets, updated snippets, re-tagging of snippets, added/updated tests)
- [ ] Scripts & Website & Meta (anything related to files in the [scripts folder](https://github.com/30-seconds/30-seconds-of-code/tree/master/scripts ), how the repository's automated procedures work and the website)
- [ ] Glossary & Secondary Features (anything related to the glossary, such as new or updated terms or other secondary features)
- [ ] General, Typos, Misc. & Meta (everything else, typos, general stuff and meta files in the repository - e.g. the issue template)
## Guidelines
- [x] I have read the guidelines in the [CONTRIBUTING](https://github.com/30-seconds/30-seconds-of-code/blob/master/CONTRIBUTING.md ) document.
2018-10-07 15:24:36 +02:00
Angelos Chalaris
4634168133
Merge pull request #803 from hckr/atob-btoa
...
[FIX] Error with new in btoa
2018-10-04 16:44:55 +03:00
Luke
5f41925219
Fix error with new in btoa
2018-10-04 12:58:44 +02:00
Angelos Chalaris
b5ca05fbcc
Merge pull request #800 from hckr/atob-btoa
...
[FIX] Replace deprecated calls in atob and btoa
2018-10-04 06:36:39 +03:00
Luke
c798852df7
Replace deprecated calls in atob and btoa
2018-10-03 23:08:31 +02:00
Angelos Chalaris
127e37f245
Update isDuplexStream.md
2018-10-03 22:27:46 +03:00
Angelos Chalaris
c7073ff1b5
Merge pull request #765 from 30-seconds/is-stream
...
Add isStream
2018-10-03 22:17:29 +03:00
Angelos Chalaris
21622234d6
Add readable, writable and duplex
2018-10-03 22:16:10 +03:00
Siarhei
7a016ca452
Change docs for triggerEvent
2018-10-03 13:27:09 +04:00
Angelos Chalaris
55c2bd3ac4
Add isStream
2018-10-01 20:12:19 +03:00
Angelos Chalaris
7a2254e87e
Resolve #754
2018-10-01 19:36:22 +03:00
30secondsofcode
2b7db4ce09
Travis build: 568
2018-10-01 16:35:03 +00:00
Angelos Chalaris
420bb90628
Merge branch 'master' into master
2018-10-01 19:33:44 +03:00
Angelos Chalaris
d8a1c09133
Update takeRightWhile.md
2018-10-01 19:32:54 +03:00
Angelos Chalaris
4033279273
Update tomorrow.md
2018-09-29 16:57:40 +03:00
30secondsofcode
1580116dd7
Travis build: 559
2018-09-29 13:47:39 +00:00
Angelos Chalaris
451132c302
Added tests for new date snippets
2018-09-29 14:29:56 +03:00
Angelos Chalaris
08509a2aed
Add isBeforeDate, isAfterDate, isSameDate
2018-09-29 13:58:38 +03:00
Angelos Chalaris
bd04a9e9ac
Add minDate, maxDate
2018-09-29 13:38:20 +03:00
Angelos Chalaris
7f7ebc24dd
Add dayOfYear
2018-09-29 13:22:20 +03:00
Mathias Bynens
8ee50178f3
Avoid confusing prototype methods for static methods
...
Correct: `Array.from()` (it’s a static method)
Incorrect: `Array.join()` (doesn’t exist; it’s a prototype method)
This patch uses the common `#` syntax to denote `.prototype.`.
2018-09-28 15:44:12 -04:00
Angelos Chalaris
e97fdf2682
Formatting changes
2018-09-27 22:47:46 +03:00
30secondsofcode
b44b539b40
Travis build: 539
2018-09-27 15:13:22 +00:00
Angelos Chalaris
aa15eada60
Merge pull request #753 from 30-seconds/feature/shank
...
[FEATURE] shank()
2018-09-27 18:12:10 +03:00
30secondsofcode
10e3673e14
Travis build: 537
2018-09-27 13:59:46 +00:00
Angelos Chalaris
65a8221fb8
Merge pull request #748 from 30-seconds/indentString
...
Add indentString
2018-09-27 16:58:31 +03:00
Brian Boyko
efce13b1e1
shank() - array - duplicates Array.prototype.splice() except returns a new array instead of mutating in-place
...
Update shank.md
Update shank.md
Update shank.js
Update shank.test.js
Update tag_database
remove testlog
2018-09-27 14:59:50 +02:00
Angelos Chalaris
f26818b4d6
Merge pull request #751 from Theomg/master
...
[ENHANCEMENT] Simpler solution to mask using padStart
2018-09-26 12:27:33 +03:00
Angelos Chalaris
e2a1310db1
Update mask.md
2018-09-26 12:27:04 +03:00
Angelos Chalaris
d8ee8c0c32
Update allEqual description
2018-09-25 23:14:42 +03:00
Siarhei
95262b249d
Fix takeRightWhile doc
2018-09-25 10:13:32 +04:00
Theo Menkes Reis
77167a059d
simpler solution to mask using padStart
2018-09-25 00:21:18 +00:00