Travis build: 66

This commit is contained in:
Pl4gue
2017-12-21 21:15:50 +00:00
parent 82a7445a10
commit c0d6fe3c39
3 changed files with 4 additions and 30 deletions

View File

@ -154,7 +154,6 @@
* [`toDecimalMark`](#todecimalmark)
* [`toOrdinalSuffix`](#toordinalsuffix)
* [`UUIDGenerator`](#uuidgenerator)
* [`validateEmail`](#validateemail)
* [`validateNumber`](#validatenumber)
## Array
@ -355,8 +354,8 @@ Returns every nth element in an array.
Use `Array.filter()` to create a new array that contains every nth element of a given array.
```js
const everyNth = (arr, nth) => arr.filter((e, i) => i % nth === 0);
// everyNth([1,2,3,4,5,6], 2) -> [ 1, 3, 5 ]
const everyNth = (arr, nth) => arr.filter((e, i) => i % nth === nth - 1);
// everyNth([1,2,3,4,5,6], 2) -> [ 2, 4, 6 ]
```
[⬆ back to top](#table-of-contents)
@ -2167,21 +2166,6 @@ const UUIDGenerator = () =>
[⬆ back to top](#table-of-contents)
### validateEmail
Returns `true` if the given string is a valid email, `false` otherwise.
Use a regular expression to check if the email is valid.
Returns `true` if email is valid, `false` if not.
```js
const validateEmail = str =>
/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(str);
// validateEmail(mymail@gmail.com) -> true
```
[⬆ back to top](#table-of-contents)
### validateNumber
Returns `true` if the given value is a number, `false` otherwise.