This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nlepage
force-pushed
the
feature/78_core_functions
branch
from
December 14, 2017 06:52
96b8d01
to
5dc6db6
Compare
Codecov Report
@@ Coverage Diff @@
## master #165 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 79 98 +19
Lines 315 350 +35
=====================================
+ Hits 315 350 +35
Continue to review full report at Codecov.
|
nlepage
force-pushed
the
feature/78_core_functions
branch
from
December 14, 2017 13:02
dc22fd8
to
14cfdab
Compare
frinyvonnick
approved these changes
Dec 15, 2017
* @flow | ||
*/ | ||
const divide = convert((value, divider) => value / divider) | ||
const divide = convert((value, divider) => Number(value) / Number(divider)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
array.filter
array.map
array.pop
array.shift
array.sort
math
functions tolang
lang
number functions: Run both operands intoNumber()
string.concat
string.padEnd
string.padStart
string.slice
string.substr
string.substring
string.toLocaleLowerCase
string.toLocaleUpperCase
string.toLowerCase
string.toUpperCase
string.trim
string.trimLeft
string.trimRight
Issue : #78