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
//# Cria objeto primario caso não exista | |
if(typeof lavamosnos == 'undefined') lavamosnos = new Object(); | |
//# Cria objeto secundário relacionado à classe quando não existir | |
if(typeof lavamosnos.card == 'undefined') lavamosnos.card = new Object(); | |
var operators = [{ | |
flag : 'visa', | |
maxNumber : [ | |
13,16 |
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
<?php | |
/* | |
|-------------------------------------------------------------------------------- | |
| Point on Polygon - DVILLAGRA | |
|-------------------------------------------------------------------------------- | |
| | |
| # Method checks if a point is contained in the polygon | |
| | |
| @author Christopher Villagra - <[email protected]> |