This file contains hidden or 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
| String.prototype.number_format = function(d) { | |
| const absValue = Math.abs(d) | |
| let c = isNaN(absValue) ? 2 : d; | |
| let n = this; | |
| let s = n < 0 ? "-" : ""; | |
| const i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "", j = (j = i.length) > 3 ? j % 3 : 0; | |
| return s + (j ? i.substr(0, j) + ',' : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + ',') + (c ? '.' + Math.abs(n - i).toFixed(c).slice(2) : ""); | |
| } |
This file contains hidden or 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
| module Http.Retry exposing (Config, send, sendWith) | |
| import Http | |
| import Process | |
| import Task exposing (Task) | |
| import Time | |
| type alias Config = | |
| { retries : Int |
This file contains hidden or 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
| module Validator | |
| exposing | |
| ( ValidatableInput | |
| , gte | |
| , int | |
| , lte | |
| , mixAlpha | |
| , mixLowercase | |
| , mixNumeric | |
| , mixSpecial |