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
/* global prototype formatMoney function | |
* params: | |
* c (integer): count numbers of digits after sign | |
* d (string): decimals sign separator | |
* t (string): miles sign separator | |
* | |
* example: | |
* (123456789.12345).formatMoney(2, ',', '.'); | |
* => "123.456.789,12" Latinoamerican moneyFormat | |
*/ |
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
rm /usr/local/bin/subl; | |
sudo ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl; |