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
application: your-app-name | |
version: 1 | |
runtime: python27 | |
api_version: 1 | |
threadsafe: true | |
default_expiration: "30d" | |
handlers: | |
# web files |
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 algorithm originally written by Patrick Muff (dislick) for JS ES6. | |
* https://gist.github.com/dislick/914e67444f8f71df3900bd77ccec6091 | |
*/ | |
/** | |
* Convert a semantic versioning string into a 32-bit integer. | |
* | |
* Make sure the input string is compatible with the standard found | |
* at semver.org. Since this only uses 10-bit per major/minor/patch version, |