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
| /** | |
| * This function returns whether the given values are valid measurements. | |
| * | |
| * @param string|string[] inputArray List or string of measures | |
| * @param string|string[] validUnits List or string of valid units | |
| * @param mixed opts Options | |
| * @return boolean Whether measure(s) is valid | |
| */ | |
| function checkValidUnits(inputArray, validUnits, opts) { |
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
| <?php | |
| /** | |
| * REST test scripts | |
| * @license MIT | |
| */ | |
| class Request { | |
| public $protocol; | |
| public $host; | |
| public $path; |
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
| using System; | |
| using System.Linq; | |
| using System.Text; | |
| namespace ConsoleApp1 | |
| { | |
| class Program | |
| { | |
| public static string Base62EncodeInt(int Original) | |
| { |
OlderNewer