show dbs
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
| function getCuilCuit(document_number, gender) { | |
| /** | |
| * Cuil format is: AB - document_number - C | |
| * Author: Nahuel Sanchez, Woile | |
| * | |
| * @param {str} document_number -> string solo digitos | |
| * @param {str} gender -> debe contener HOMBRE, MUJER o SOCIEDAD | |
| * | |
| * @return {str} | |
| **/ |
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
| var p1 = { | |
| x: 20, | |
| y: 20 | |
| }; | |
| var p2 = { | |
| x: 40, | |
| y: 40 | |
| }; |