Travis build: 833 [cron]

This commit is contained in:
30secondsofcode
2018-11-22 14:23:54 +00:00
parent 4c1c112c3d
commit 932f9f87ed
9 changed files with 1643 additions and 1587 deletions

View File

@ -1423,6 +1423,13 @@
],
"description": "Checks if a string is lower case.\n\nConvert the given string to lower case, using `String.toLowerCase()` and compare it to the original"
},
"isNegativeZero": {
"prefix": "30s_isNegativeZero",
"body": [
"const isNegativeZero = val => val === 0 && 1 / val === -Infinity;"
],
"description": "Checks if the given value is equal to negative zero (`-0`).\n\nChecks whether a passed value is equal to `0` and if `1` divided by the value equals `-Infinity`"
},
"isNil": {
"prefix": "30s_isNil",
"body": [